I use the assembly information version number - and advance it manually through the VS 2008.
Is there a way to advance the minor version number automatically each time I Build the solution ?
|
|
I use the assembly information version number - and advance it manually through the VS 2008. Is there a way to advance the minor version number automatically each time I Build the solution ?
|
|||
|
|
|
|
I used this MSBuild Task to auto-increment my build numbers - requires a few manual modifications in your *.csproj or *.vbproj files, but it works quite flawlessly, and is quite flexible, too. |
||||
|
|
|
Visual studio have a build-in mecanism for that: inside
Asterisk sign instructs Visual Studio to assign on each build a version 1.0.d.s, where d is the number of days since February 1, 2000, and s is the number of seconds since midnight/2. EDIT: Take a look at this webpage: http://www.codeproject.com/KB/dotnet/ManagingAssemblyVersions.aspx there is many information about: how to manage the version number. |
||||||||
|
|
|
IIRC In your solution explorer, click on "Show all files", I believe it's the third one near the top of that window. (double)click on "My Project." Next, double-click on "AssemblyInfo.vb" In the code editor, scroll down until you've reached the bottom. Comment out Replace
with
Click 'Save'. Then you're done! |
||||||
|