views:

717

answers:

2

How can I change the assembly version in the file AssemblyInfo.cs for multiple projects. We have around 75 project in our solution and we need to change the version almost every week. What is the fastest way to do this.

+8  A: 

I usually create a file called AssemblyVersionInfo.cs that is included as a link in all projects. I make this file contain the version attributes, and remove the same attributes from the regular AssemblyInfo.cs files. Then you can update version numbers in one file only, and make all the projects share the same number.

To add the file as a link; right click the project in the solution explorer, select "Add" -> "Existing item...". Browse to the file, and then click the little arrow in the right edge of the add button, and select "Add As Link" in the dropdown menu.

Fredrik Mörk
+1 - beat me to it.
ChrisF
Yeah, this is a good way to do it.
Noldorin
http://blogs.msdn.com/jjameson/archive/2009/04/03/shared-assembly-info-in-visual-studio-projects.aspx
Yacoder
+2  A: 

One way to do it is to have a master build script that uses the AssemblyInfo Task to set the version number at build time(http://code.msdn.microsoft.com/AssemblyInfoTaskvers) and then define the versions numbers as properties in the msbuild script.

pjbelf