how to setting-up visual studio 2010 to set as auto-increment version of project on each build? this feature isn't exist on vs2010?
views:
96answers:
1
+2
A:
Change the AssemblyInfo.cs-File:
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
to
[assembly: AssemblyVersion("1.0.*")]
//[assembly: AssemblyFileVersion("1.0.0.0")]
Floyd
2010-08-11 11:09:08
oh thanks it's perfect
Sadegh
2010-08-11 11:13:28
The only problem is that the number replaced by * doesn't always increment.
Tomas Pajonk
2010-08-27 07:11:33
1.0.* is always replaced with 1.0.{date}.{time] so it should be always be increment.
Floyd
2010-08-27 07:41:41