vote up 4 vote down star

Myself and my group is horrendous at incrementing assembly version #'s and we frequently ship assemblys with 1.0.0.0 versions. Obviously, this causes alot of headaches.

We're getting alot better with our practices via our CI platform and I'd really like to set it up to auto increment the values within the assemblyinfo.cs so that the versions of our assemblies are auto updated with the code changes in that assembly.

I had previously setup (before we found Hudson) a way to increment the value through either msbuild or the command line (cant remember), but with Hudson, that will update the SVN repository and trigger ANOTHER build. That would result in a slow infinite loop as Hudson polls SVN every hour.

If having Hudson increment the version # is a bad idea, feel free to let me know and suggest alternative ideas, I'm willing to accept that as an answer.

Ideally, my criterea for a solution would be one that:

  • Increments the build number in assemblyinfo.cs before a build
  • Only increments the build number in assemblies that have changed. This may not be possible as Hudson wipes out the project folder every time it does a build
  • Commits the changed assemblyinfo.cs into the code repository (currently Visual SVN)
  • Does not cause Hudson to trigger a new build the next time it scans for changes

Working this out in my head, I could easily come up with a solution to most of this through batch files / commands, but all of my ideas would cause Hudson to trigger a new build the next time it scans. I'm not looking for someone to do everything for me, just point me in the right direction, maybe a technique to get Hudson to ignore certain SVN commits, etc.

Everything I've found so far is just an article explaining how to get the version # auto incremented, nothing takes into account a CI platform that could be spun into an infinite loop.

Sorry for all the edits, the corporate internet connection is CRAZY right now

flag

4 Answers

vote up 4 vote down check

A simple alternative is to let the c# environment increment the assembly version for you by setting the version attribute to major.minor.* (as described in the AssemblyInfo file template).

You may be looking for a more comprehensive solution, though.

EDIT (Response to question in comment):

From AssemblyInfo.cs

// 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 Build and Revision Numbers 
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
link|flag
I've never come across this before, could you go into a little bit more detail about what it does. Does it only function within one IDE or does it work across a whole team of developers with a CI platform? – Allen Jul 14 at 17:42
ahhh I have seen that before, that may be an acceptable solution but the # built isn't stored within subversion etc. I have Hudson setup to archive the files and in that way it is stored so that might be acceptable. I will have to do some more research into how that mechanism works, thanks! You wouldn't know how it determines what to put in as values, would you? – Allen Jul 14 at 18:02
See my answer below for the answer to your question. The values are determined based on the build time. – Kyle Trauberman Jul 14 at 18:06
Wow, I think this will work. Not sure how we overlooked such a simple solution – Allen Jul 14 at 18:26
Hope it does, glad I could help. Why do something the hard way when the easy, fast way is also the right way? :) – Greg D Jul 14 at 19:10
vote up 3 vote down

Hudson can be configured to ignore changes to certain paths and files so that it does not prompt a new build.

On the job configuration page, under Source Code Management, click the Advanced button. In the Excluded Regions box you enter one or more regular expression to match exclusions.

For example to ignore changes to the version.properties file you can use:

/MyProject/trunk/version.properties

This will work for languages other than C# and allows you to store your version info within subversion.

link|flag
vote up 2 vote down

I've never actually seen that 1.0.* feature work in VS2005 or VS2008. Is there something that needs to be done to set VS to increment the values?

If AssemblyInfo.cs is hardcoded with 1.0.*, then where are the real build/revision stored?

After putting 1.0.* in AssemblyInfo, we can't use the following statement because ProductVersion now has an invalid value - it's using 1.0.* and not the value assigned by VS:

Version version = new Version(Application.ProductVersion);

Sigh - this seems to be one of those things that everyone asks about but somehow there's never a solid answer. Years ago I saw solutions for generating a revision number and saving it into AssemblyInfo as part of a post-build process. I hoped that sort of dance wouldn't be required for VS2008. Maybe VS2010?

link|flag
1  
You have to remove the AssemblyFileVersion. Other than that, its working out awesome for us, the accepted answer that is. – Allen Oct 15 at 23:57
Yes, removing AssemblyFileVersion allows the version to update, and no more errors with Version. Nice. Note: two Build operations only increment the revision once, but if you ReBuild the revision is updated. As ktrauberman said, it looks like the build.revision = date.time, which explains why the data isn't stored anywhere except in the assembly. Now I need to get a standard MSI Setup to generate a new ProductCode when the primary output project updates. Setups don't allow for revision, only build. I want to install over an existing installation to do an update. Need to research. – TonyG Oct 18 at 20:43
vote up 1 vote down

.NET does this for you. In your AssemblyInfo.cs file, set your assembly version to major.minor.* (for example: 1.0.*).

When you build your project the version is auto generated.

The build and revision numbers are generated based on the date, using the unix epoch, I believe. The build is based on the current day, and the revision is based on the number of seconds since midnight.

link|flag
<ring, ring> "hello, product support how may i help?" <customer> "i have an error" <support> "ok, what version are you running?" <customer> "version one point two revision eight five two five three seven four build seven four six three five two nine..." <support> "hold on, just typing that it... hmmm... please repeat the version numbers, we dont seem to have that build and revision listed..." - GRRR! – Jimbo Nov 4 at 14:21

Your Answer

Get an OpenID
or

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