Click here to Skip to main content
Licence 
First Posted 11 Sep 2003
Views 170,806
Bookmarked 58 times

Build Number Automation for Visual Studio .NET Projects

By | 18 Sep 2003 | Article
A Visual Studio .NET macro to automatically update the build number written in AssemblyInfo.cs.

Introduction

Hi. It's the first time that I am writing a CodeProject article. I feel honored. :) Anyway, Sometimes I'm too lazy to manually update the build number of my software every time a new build comes out. And I thought to find a similar tool and customize it to work as I wanted would be more complicated than writing my own. So here's the macro, to automatically update the build number in AssemblyInfo.cs for you. (For VB.NET projects this would be AssemblyInfo.vb) I kept it simple, so you can get the idea and do customizations yourself.

How does it work

Basically the macro, once triggered, tries to open the file AssemblyInfo.cs from a path you specify, and locates the version string (something like this in C#: [assembly:AssemblyVersion("1.0.0220.1536")]) using regular expression. It then updates the old revision and build numbers based on some rules, and writes the file back. At the very end, an optional Build.BuildSolution command is called. If you want to update the build number every time a new build process is kicked off, run this macro instead of using the normal Build->Build Solution menu item.

The rules of the calculation of build numbers are fairly simple. Normally a version number will look like this: AA.BB.CCDD.EEFF, where AA is the major version and BB is the minor version. These two are untouched: you have to set them yourself. The CCDD.EEFF part is modified automatically. CC will be used to represent the number of months elapsed since the starting of the project, and DD the number of days after those months. EE and FF will be the hours and minutes the build was created in that day. Therefore for example, if the project started on Jan 10, 2003 with version 1.0 and you run this macro on Mar 15, 2003 at 14:00, this is the build number that comes out of the calculation: 1.0.0205.1400. (I was told that this is the Microsoft's way of numbering the build.)

How to make it work

You will have to create a new macro with the source code included in this article. I assume you already know how to do that. Then, you will have to edit the source code to make it work for your project. The followings are what you need to change:

  1. Change variable theProjectStartingDate. This represents the starting date of your project, on which the calculation is based.
  2. Change variable theAssemblyInfoFilePath. The path is relative to the path of the project file (*.csproj for C#) I put all my source files under Source\ directory, so it's Source\AssemblyInfo.cs in the sample code. VB.NET users have to change the file name to AssemblyInfo.vb, and also the regular expression that parses the VB version string, correctly. I'm sorry but I'm not a VB programmer.
  3. Change variable theBuildSolution to False if you don't want to build after the macro is done.
  4. Change the default version string from 1.0.* to something like 1.0.0.0 so the macro can find it for the first time.

If you run this macro with AssemblyInfo.cs file open, you will be prompted whether to reload it. But the build process will not be interrupted.

Conclusion

This is it. It doesn't do much, and it may have problems handling multiple projects in one solution. But I think the code is comprehensive enough for other people to customize. Again, I'm not a VB programmer, so please don't laugh if you find this article childish. Thanx :)

History

  • Sep 13 2003 - Initial release
  • Sep 19 2003 - Source updated

 

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Darrel Liu

Web Developer

United States United States

Member

Darrel is a perfectionist at heart: he refuses to work on code that does not adopt perfect indentation. He usually has to spend a great deal of time doing reformatting. This has made him have little achievement as a coder since the beginning of his programmer's life at age 12.
 
Other than programming, he drives his 2003 Desert Silver Acura RSX, watches movies and listens to soft music.

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 vote of 5 PinmemberBob Murphy10:12 15 Dec '10  
GeneralUsing with Express editions Pinmemberashesman23:47 1 Jan '09  
GeneralAlternative way Pinmemberlextm20:02 11 Jul '07  
QuestionWhat is DTE PinmemberT. Sampath4:52 27 Apr '07  
AnswerRe: What is DTE Pinmember1.sladr22:50 25 Jun '07  
Generalit's not necessary to read the assemblyinfo file [modified] Pinmember1.sladr1:12 23 Apr '07  
GeneralGreat.. Thanks. PinmemberMichael Sync16:36 12 Jan '07  
GeneralGreat! PinmemberBendanyQian18:50 14 Feb '06  
GeneralVersion Number Idea - Wrong PinmemberAAMP1:58 10 May '05  
GeneralRemember to add a reference to VSLangProj.dll PinsussYuh-Rong Leu21:28 14 Mar '05  
GeneralGetting the AssemblyVersion value Pinmemberraulhmacias13:51 3 Mar '04  
GeneralRe: Getting the AssemblyVersion value PinmemberHairiDog7:03 23 Apr '04  
GeneralRe: Getting the AssemblyVersion value Pinsussenriqe8:47 18 Jun '04  
General© in the assembly-file Pinmemberthilol4:26 23 Jan '04  
Generalproblem if AssemblyInfo.cs already open Pinmemberthilol2:27 30 Sep '03  
GeneralUpdated for multiple C# project enumeration Pinsussbcraun11:24 25 Sep '03  
GeneralRe: Updated for multiple C# project enumeration PinmemberDarrel Liu12:05 25 Sep '03  
GeneralFailed with VB.NET Pinmemberolinat12:54 24 Sep '03  
GeneralRe: Failed with VB.NET PinmemberDarrel Liu13:29 24 Sep '03  
GeneralRe: Failed with VB.NET Pinmemberolinat13:36 24 Sep '03  
QuestionAnybody can give me a walk-through? PinmemberHardy5:37 17 Sep '03  
AnswerRe: Anybody can give me a walk-through? PinmemberDarrel Liu7:00 17 Sep '03  
GeneralRe: Anybody can give me a walk-through? PinmemberHardy7:16 17 Sep '03  
GeneralRe: Anybody can give me a walk-through? PinmemberDarrel Liu7:40 17 Sep '03  
GeneralRe: Anybody can give me a walk-through? Pinmemberbebangs17:07 18 Mar '08  

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
Web03 | 2.5.120517.1 | Last Updated 19 Sep 2003
Article Copyright 2003 by Darrel Liu
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid