help with version control
C#
3
Posts
3
Posters
0
Views
1
Watching
-
Is there a way to enable auto-increment version on build? I'm talking about the visual c# 2005 express edition beta 2 IM PROUD TO BE A GMAIL;
I don't believe so, I store the version number in the app settings and run a post build step to increment it for my app. Christian Graus - Microsoft MVP - C++
-
Is there a way to enable auto-increment version on build? I'm talking about the visual c# 2005 express edition beta 2 IM PROUD TO BE A GMAIL;
Yes, in your AssemblyInfo.cs file, include the following:
[assembly: AssemblyVersion("1.0.*")]
- Nick Parker Microsoft MVP - Visual C#
My Blog | My Articles