2008-01-06, 08:36 PM
Using VS C# 2005 Express, I usually edit the AssemblyInfo.cs to contain something similar to......which auto-generates the build and revision numbers but this gives things like 1.1.2927.12087. I'd much rather have a simpler increment such as 1.1.4, 1.1.5 etc.
Obviously I could manually edit the AssemblyInfo.cs file with those values but with several assemblies in one solution, this is a bit of a hassle.
How do other developers handle this?
Cheers,
Brian
Code:
[assembly: AssemblyVersion("1.1.*")]
Obviously I could manually edit the AssemblyInfo.cs file with those values but with several assemblies in one solution, this is a bit of a hassle.
How do other developers handle this?
Cheers,
Brian