Click here to Skip to main content
Licence CPOL
First Posted 29 Jul 2005
Views 38,702
Downloads 63
Bookmarked 26 times

Increment Build Number in VS.NET

By | 28 Jan 2008 | Article
Little quick and dirty program (60 lines) which updates the version build number each time a release is built.

Introduction

In VS 6, we had an autoincrement of the build number, if we build a new *.exe file. In VS.NET, I miss this feature. Here I submit a quick and dirty program (60 lines) which updates the version line in AssemblyInfo.cs each time a Release version is build.

Basics

Beau Scinner has written a lot about the basics, but it works only in VS 6. In VS.NET is AssemblyInfo.cs file, which contains the information of the Application.ProductVersion in the form of one line:

// Version information for an assembly consists of the following four values:
//
//      Major Version
//      Minor Version 
//      Build Number
//      Revision
//
// You can specify all the values or you can default the Revision and Build Numbers 
// by using the '*' as shown below:

[assembly: AssemblyVersion("1.0.13")]

IncBuildNo reads this file, increments the last number by 1 and writes it back.

Calling IncBuildNo

IncBuildNo's 1st arg is the path and filename to AssemblyInfo.cs.
Optional it reads a 2nd arg Release. If the 2nd arg is given, but if arg!="Release", IncBuildNo returns without any action, I add this option, that IncBuildNo is able to select the VS.NET environment Release/Debug.
If you omit this 2nd arg or the 2nd arg is Release IncBuildNo increments the last number of the version string (otherwise it skips incrementing).

In the new version, I add some error-output to the Application Event Log.

Installation

If you download the project above, you have a complete installed example.

In your own projects, take the following steps:

  1. Copy IncBuildNo into the same directory as AssemblyInfo.cs (normally the $(ProductDir))
  2. In VS.NET, select Project -> Properties -> Build Events
  3. Insert in Post-build Event CommandLine:
    "$(ProjectDir)IncBuildNo" "$(ProjectDir)AssemblyInfo.cs" $(ConfigurationName)
  4. Select in Run the Post-Build Event? When build updates the project output

Now each time you build a new release, the last number of the version is incremented.

1st Note: After a successful build of a release, AssemblyInfo.cs shows the version of the release +1.

2nd Note: If you use a installation-project when you build your application, you can insert a line in the postbuild event property in the project properties of this installation project. I use e.g.

"$(ProjectDir)IncBuildNo" "$(ProjectDir)..\AssemblyInfo.cs" $(ConfigurationName) 

Attention: In this case, the $(ProjectDir) points to the install project, not to the application project. This is the reason for the ..\ phrase in the above line. But then the increment happened only if the building process is running, i.e., you can build a Release-Version without incrementing the build number.

I hope this will help you.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Ariadne

Software Developer (Senior)
EndoTherm GmbH
Switzerland Switzerland

Member

My first approach to computers was in 1970 a IBM1160, a real desk computer, this means it was as large as a desk and had a cartreader and 32 kByte Memory! But it runs FORTRAN! Ok 'run' is a little too fast

Later I was very proud on my Comodore CBM8032 32KbRAM+32KbRom (uff!) and 2 (in words 'TWO') floppies. But it was able to run a Basic-Interpreter. (There was a young gay in USA, who invent and developed the garbage collecter for such interpreter, his name was Bill G.)

Unfortunatly this CBM8032 burned away due to some "experiements"...

Ok, later I studied physics and work now since 20 years in the cancer research in Switzerland. My own little company Ariadne-Consulting delivers the login name:

Ariadne



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy version of that PinmemberPIEBALDconsult8:30 28 Jan '08  
GeneralRe: My version of that PinmemberAriadne20:22 28 Jan '08  
nice structured.
Did you do some tests with Umlaute äöü? I had a lot of trouble with it.
Hint: Add an entry in the eventlog and 'return with integers' eg. return -5. If there is an error in the postbuild-process you get only the integer as result.
 
Ariadne

Generalissues when implementing in c# SmartClient Project PinmemberSirGolphknut8:24 4 Apr '06  
GeneralRe: issues when implementing in c# SmartClient Project [modified] PinmemberAriadne2:46 28 Jan '08  
General... and this is how to do it in VB.NET !!! Pinmemberdaniellus3:07 10 Nov '05  
GeneralRe: ... and this is how to do it in VB.NET !!! Pinmemberimxuf12:58 23 May '07  
GeneralIncrement build number in VS.Net PinmemberKoszyk0:00 3 Aug '05  
GeneralRe: Increment build number in VS.Net PinmemberAriadne3:53 3 Aug '05  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120529.1 | Last Updated 28 Jan 2008
Article Copyright 2005 by Ariadne
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid