I have a VS2008 project written in c# with a number of assemblies. I\'d like to have a simple way of managing the version numbers between all of the different assemblies and
I use a .cs file on solution level that is linked by all projects in the solution which contains the following lines:
using System.Reflection; [assembly : AssemblyVersion("1.2.3.*")]
And be sure to remove the AssemblyFileVersion attribute from the AssemblyInfo file in your project.
AssemblyFileVersion