Sunday, August 7, 2011

Custom Assembly Versioning with VS 2010 and MSBUILD

There is a plethora of resources that deal with auto incrementing build numbers and a wealth of plugins and other gizmos that manage assembly versioning. So why yet another article. The truth is that none of those option solved my problem. I needed something simple, easy to maintain and most importantly flexible with a local .NET flavour. So naturally I had to write my own humble solution.

One of the daunting tasks we often face when deploying assemblies, is managing assembly and product versions. In any “decent” .NET solution, there is a need to auto-increment the version with every successful build. For example, incrementing the duild part of the assembly version in this default scheme

Major.Minor.Build.Revision

Sometime, versioning requirements are more elaborate and demanding, we might want to append the build date as well as incrementing the build number, the version scheme might look like

Major.Minor.Build.DDMMYYYY

For that purpose I prefer using the AssemblyFileVersion instead of the AssemblyVersion. The former has an open format and can accommodate virtually any data, whereas the later, AssmeblyVersion is intended for use by the .NET framework and enforces a strict numbering scheme that yields compiler errors if infracted.

[assembly: AssemblyVersion("4.0.*")] //Strict Format, for framework use
[assembly: AssemblyFileVersion("4.0.20.110708")] //Flexible Format more suitable for product versions

This post describes how to leverage MSBUILD to automate this process and include it in the continuous integration pipeline.

Tips for managing multiple assembly.cs files

In a solution with multiple projects and corresponding multiple assembly.cs files where AssemblyVersion and AssemblyFileVersion are kept, it is better to have one such file shared amongst all assemblies. To achieve this, we use a very useful visual studio feature which is Adding Existing Items as Links

Add as Link in VS2010

We use this technique to create one shared assembly info file to be shared amongst all the projects in the solution. This shared file will contain the AssemblyVersion and AssemblyFileVersion assembly attributes are well as any solution wide values, whereas the individual project level assembly.cs will contain project specific information such as:

using System.Reflection;
using System.Runtime.InteropServices;

[assembly: AssemblyTitle("POC.AssemblyVersioning.Common")]
[assembly: AssemblyCulture("")]

[assembly: Guid("bdf2e8b4-41aa-4569-b093-987439090dea")]

And here is how the solution structure will look like with implementing this scheme.. all for the sole purpose of facilitating modifying assembly version automatically.

solution view

And now to the more interesting part

Building custom MSBUILD tasks

The reason why I prefer to use custom tasks in build automation as opposed to other scripting solution, is the glaring fact that Build Tasks are plain C# classes, where you can use the goodies that the .NET framework offers. To create a Build Tasks all you have to do is:

  • Add references to the required .NET assemblies

references

  • Create a class that extends Microsoft.Build.Utilities.Task
  1. public class MyTask : Task
  2. {
  3.     // The only behaviour that need be overridden
  4.     public override bool Execute()
  5.     {
  6.         throw new NotImplementedException();
  7.     }
  8. }

<?xml version="1.0" encoding="utf-8" ?>
<Project ToolsVersion="4.0" DefaultTargets="AutoIncrement" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <UsingTask AssemblyFile="POC.AssemblyVersioning.BuildTask.dll" TaskName="BuildIncrementTask" />
  <Target Name="AutoIncrement">
    <BuildIncrementTask />
  </Target>
</Project>

And to simply invoke this task from a command line, we use this familiar syntax, assuming that the msbuild file was saved as sample.proj

msbuild sample.proj /t:AutoIncrement

Putting it all together!

After having acquainted ourselves with MSBUILD tasks and thought about having one shared assembly file info that hosts the AssemblyVersion and AssemblyFileVersion attributes, I introduce here a simple way to go about updating those attributes through this simple custom task. The task is based on file I/O where the contents of the shared assembly info will be parsed, the attributes update and incremented (or transformed to the desired format) and the content re-written back to the file. Here is the source code for the simple build tasks that will perform the file manipulation. This is for illustration purposes and intended only as a guide to creating your own build task. I encourage you to.

 

  1. public class AutoIncrementTask : Task
  2. {
  3.     private const string VersionPattern = @"\[assembly: AssemblyFileVersion\(\""(\d{1}).(\d{1}).(\d{1,}).(\d{6})""\)\]";
  4.     public string AssemblyInfoPath { get; set; }
  5.         
  6.     public override bool Execute()
  7.     {
  8.         try
  9.         {
  10.             if (String.IsNullOrEmpty(AssemblyInfoPath))
  11.                 throw new ArgumentException("AssemblyInfoPath must have a value");
  12.  
  13.             string[] content = File.ReadAllLines(AssemblyInfoPath, Encoding.Default);
  14.             var rx = new Regex(VersionPattern);
  15.  
  16.             var newContent = new List<string>();
  17.             content.ToList().ForEach(line =>
  18.                                             {
  19.                                                 if (rx.IsMatch(line))
  20.                                                     line = VersionMatcher(rx.Match(line));
  21.                                                 newContent.Add(line);
  22.                                             });
  23.  
  24.             File.WriteAllLines(AssemblyInfoPath, newContent);
  25.  
  26.         }
  27.         catch(Exception ex)
  28.         {
  29.             Console.Out.WriteLine(ex);
  30.             return false;
  31.         }
  32.  
  33.         return true;
  34.     }
  35.  
  36.     private string VersionMatcher(Match match)
  37.     {            
  38.         int major = int.Parse(match.Groups[1].Value);
  39.         int minor = int.Parse(match.Groups[2].Value);
  40.         int build = int.Parse(match.Groups[3].Value);
  41.         string revision = match.Groups[4].Value;
  42.  
  43.         Console.WriteLine("AutoIncrement Assembly {0}", Path.GetFileName(AssemblyInfoPath));
  44.         Console.WriteLine("Current matched version: {0}.{1}.{2}.{3}", major, minor, build, revision);
  45.  
  46.         ++build;
  47.         revision = String.Format("{0}{1}{2}", DateTime.Now.Year.ToString().Substring(2), String.Format("{0:d2}", DateTime.Today.Month), String.Format("{0:d2}", DateTime.Today.Day));
  48.         Console.WriteLine("Incremented to version: {0}.{1}.{2}.{3}", major, minor, build, revision);
  49.  
  50.         string result = match.Result("[assembly: AssemblyFileVersion(\"$1.$2.{0}.{1}\")]");
  51.         return String.Format(result, build, revision);
  52.     }
  53. }

And here is the corresponding xml MSBUILD file:

<?xml version="1.0" encoding="utf-8" ?>
<Project ToolsVersion="4.0" DefaultTargets="IncrementBuild" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <UsingTask AssemblyFile="PATH_TO_TASK_DLL" TaskName="AutoIncrementTask" />
  <Target Name="IncrementBuild">
    <AutoIncrementTask AssemblyInfoPath="..\SharedAssemblyInfo.cs" />
  </Target>
</Project>

As you can see, I chose the AssemblyFileVersion as the target for custom product and assembly versioning because there are no compile time checks on the the format of the version and because a product version is more end-user and business stakeholder friendly than the automatic build numbers used internally by the .NET framework.

You can include the previous build task as a step in the build process capitalizing on the MSBUILD command line capabilities.

Hope this helped…

Stay #

3 comments:

  1. Hi, Thx for a great article. I tried your suggestion but i get an warning :

    warning CS1607: Assembly generation -- The version '4.2.0.111022' specified for the 'file version' is not in the normal 'major.minor.build.revision' format

    Searching the net i found that this has been a problem since 2007. How come you don't see this problem ?

    I was counting on using 10digit build number DDMMYYHHMM

    ReplyDelete
  2. I forgot to mention that if i build your sample solution then check POC.AssemblyVersioning.Project.1.dll details i see

    File Version : 4.0.66.45486
    Product Version : 4.0.66.111022

    So it seems the Product Version is correct but the File Version is not as specified in AssemblyFileVersion.


    ReplyDelete
    Replies
    1. Hi Mihai,

      Thank you for your comments, let me try to answer both comment. My solution leverages the flexibility of AssemblyFileVersion (equivalent to Product Version). The AssemblyVersion format is mandatory to adhere to the major.minor.build.revision format and will give you a compile time error. Where as changing the AssemblyFileVersion yields only a warning that can be safely ignored.

      I use this approach in production systems with no problems. The "File Version" is derived from the AssemblyVersion attribute in the assembly which as I mention above cannot have a custom format as can the AssemblyFileVersion.

      Delete