vote up 2 vote down star

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 ?

flag

64% accept rate

3 Answers

vote up 2 vote down check

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.

link|flag
I think this targets what I need better, it will take me some time to test it, but it looks right ! thanks ! – Dani Nov 4 at 15:39
This is a little problem, I am using a svn controlled environment which locks the files if I don't check them out. using this solution makes me lock the assembly.cs in order to build. I guess there is no way to avoid this... but it takes the fun out of the solution... – Dani Nov 5 at 11:01
vote up 1 vote down

Visual studio have a build-in mecanism for that:

inside AssemblyInfo.cs, change the settings by this one:

[assembly: AssemblyVersion("1.0.*")]

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.

link|flag
10x, how can I tell which is the current number / have a "sid" - meaning - if the project is in number 55 and I want it to start automatically from 56 ? (or start from zero after a magor version number change ?) – Dani Nov 4 at 15:19
I've tried using * in that field - the ide doesn't allow it. – Dani Nov 4 at 15:21
If i remember correctly, the first generated number will be generated in function of the date, and the second one with a build number. So you will get number like 1.0.4245.51002 – Matthieu Nov 4 at 15:25
Well, it works (vote up), but can't I control the start number ? I got: 1.0.0.31411 and after 1 build it went to 31485 ! so it doesn't even jump sequentially.... – Dani Nov 4 at 15:32
vote up 0 vote down

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

<Assembly: AssemblyVersion("1.0.0.0")>

with

<Assembly: AssemblyVersion("1.*.0")>

Click 'Save'.

Then you're done!

link|flag
1  
yeah,but that doesn't nicely advance the build number - it just grabs the current time and date adn sticks it in there, so your build numbers look something like 1.0.21643.23849 and so forth.... – marc_s Nov 4 at 15:27
Thanks for that, ill make a note. I remember one of my co-workers mentioning it one time. – Pace Nov 4 at 15:58

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.