Click here to Skip to main content
6,295,667 members and growing! (9,935 online)
Email Password   helpLost your password?
General Programming » Macros and Add-ins » VS.NET Add-ins     Intermediate

Build Number Automation for Visual Studio .NET Projects

By Darrel Liu

A Visual Studio .NET macro to automatically update the build number written in AssemblyInfo.cs.
C#, VB.NET 1.0, .NET 1.1, Win2K, WinXP, Win2003, Visual Studio, Dev
Posted:11 Sep 2003
Updated:18 Sep 2003
Views:132,856
Bookmarked:50 times
Announcements
Loading...
 
Search    
Advanced Search
printPrint   Broken Article?Report       add Share
  Discuss Discuss   Recommend Article Email
16 votes for this article.
Popularity: 4.98 Rating: 4.14 out of 5
2 votes, 12.5%
1

2
2 votes, 12.5%
3
5 votes, 31.3%
4
7 votes, 43.8%
5

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


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.
Occupation: Web Developer
Location: United States United States

Other popular Macros and Add-ins articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 25 of 38 (Total in Forum: 38) (Refresh)FirstPrevNext
GeneralUsing with Express editions Pinmemberashesman0:47 2 Jan '09  
GeneralAlternative way Pinmemberlextm21:02 11 Jul '07  
GeneralWhat is DTE PinmemberT. Sampath5:52 27 Apr '07  
GeneralRe: What is DTE Pinmember1.sladr23:50 25 Jun '07  
Generalit's not necessary to read the assemblyinfo file [modified] Pinmember1.sladr2:12 23 Apr '07  
GeneralGreat.. Thanks. PinmemberMichael Sync17:36 12 Jan '07  
GeneralGreat! PinmemberBendanyQian19:50 14 Feb '06  
GeneralVersion Number Idea - Wrong PinmemberAAMP2:58 10 May '05  
GeneralRemember to add a reference to VSLangProj.dll PinsussYuh-Rong Leu22:28 14 Mar '05  
GeneralGetting the AssemblyVersion value Pinmemberraulhmacias14:51 3 Mar '04  
GeneralRe: Getting the AssemblyVersion value PinmemberHairiDog8:03 23 Apr '04  
GeneralRe: Getting the AssemblyVersion value Pinsussenriqe9:47 18 Jun '04  
General© in the assembly-file Pinmemberthilol5:26 23 Jan '04  
Generalproblem if AssemblyInfo.cs already open Pinmemberthilol3:27 30 Sep '03  
GeneralUpdated for multiple C# project enumeration Pinsussbcraun12:24 25 Sep '03  
GeneralRe: Updated for multiple C# project enumeration PinmemberDarrel Liu13:05 25 Sep '03  
GeneralFailed with VB.NET Pinmemberolinat13:54 24 Sep '03  
GeneralRe: Failed with VB.NET PinmemberDarrel Liu14:29 24 Sep '03  
GeneralRe: Failed with VB.NET Pinmemberolinat14:36 24 Sep '03  
GeneralAnybody can give me a walk-through? PinmemberHardy6:37 17 Sep '03  
GeneralRe: Anybody can give me a walk-through? PinmemberDarrel Liu8:00 17 Sep '03  
GeneralRe: Anybody can give me a walk-through? PinmemberHardy8:16 17 Sep '03  
GeneralRe: Anybody can give me a walk-through? PinmemberDarrel Liu8:40 17 Sep '03  
GeneralRe: Anybody can give me a walk-through? Pinmemberbebangs18:07 18 Mar '08  
GeneralYear of theProjectStartingDate Pinmemberthilol3:02 16 Sep '03  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 18 Sep 2003
Editor: Nishant Sivakumar
Copyright 2003 by Darrel Liu
Everything else Copyright © CodeProject, 1999-2009
Web17 | Advertise on the Code Project