Click here to Skip to main content
15,884,298 members
Articles / Programming Languages / Visual Basic

Auto-Increment Project Build Number (VS 2008 compatible)

Rate me:
Please Sign up or sign in to vote.
3.64/5 (6 votes)
30 Mar 2009CPOL1 min read 35.9K   236   23   5
Increase the build number of the project each time you compile

Introduction

Recently, I've noticed many people looking for a build number incrementor that works with Visual Studio 2008. I was also one of those people. Hence, I dug up an old macro I used in VS 2005 (written by Bellerephon here) and started to debug it. What I figured out was actually quite simplistic.

Using the Code

Since the instructions are the same from the original article, I will simply quote the original author:

  • Download the code and extract it.
  • Open up Visual Studio, and from the Tools menu, select Macros->Macros IDE.
  • Under the MyMacros heading in the Macro Project Explorer, open EnvironmentEvents and copy the function from the corresponding file in the zip.
  • Repeat for the functions in Module1.vb in the Zip.

That's all, your project build number will now be automatically incremented.

Basically, VS 2008 generates a project with an extra comment line in AssemblyInfo.cs.

C#
// [assembly: AssemblyVersion("1.0.*")]

The macro was not working since an exception was thrown each time the macro tried to extract the current build number. Without the comment removed, the value was "*" which did not parse correctly.

So, the only line I had to add to the macro was:

VB.NET
' CS in VS2008 also inserts a comment line, so remove that as well.
Try
    AIText = AIText.Replace("// [assembly: AssemblyVersion(""1.0.*"")]", "")
Catch ex As Exception
End Try        

Points of Interest

All in all, the solution to the build number problem was really easy. Once again, I would like to thank Bellerephon for his original code.

History

  • March 30, 2009 - First version

License

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


Written By
Canada Canada
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralThis only works for C# & VB, not C++. Pin
ggianop7-Sep-09 16:51
ggianop7-Sep-09 16:51 
Generalgood note Pin
Donsw3-May-09 11:43
Donsw3-May-09 11:43 
GeneralSystem.IO Pin
kingjotte29-Apr-09 4:58
kingjotte29-Apr-09 4:58 
GeneralRe: System.IO Pin
That Asian Guy2-May-09 11:37
That Asian Guy2-May-09 11:37 
GeneralRe: System.IO Pin
kingjotte2-May-09 13:57
kingjotte2-May-09 13:57 

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

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