Managing Assembly versions in Visual Studio
4 בספטמבר 2006
In a Visual Studio solution with many projects that are eventually compiled into individual assemblies it's a pain in the a** to manage assembly versions. We don't use Team System yet, so keeping track of and updating assembly versions is mainly a series of manual actions. 1) For each project locate AssemblyInfo.vb/cs. 2) Change the assembly version. 3) Check the file back into source control.
That might not sound too bad, but if you have to go through 17 projects then this is not a fun exercise. As for many other developer related problems I found a great solution on CodeProject that...
no comments