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
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.
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
- Create a class that extends Microsoft.Build.Utilities.Task
- public class MyTask : Task
- {
- // The only behaviour that need be overridden
- public override bool Execute()
- {
- throw new NotImplementedException();
- }
- }
<?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.
- public class AutoIncrementTask : Task
- {
- private const string VersionPattern = @"\[assembly: AssemblyFileVersion\(\""(\d{1}).(\d{1}).(\d{1,}).(\d{6})""\)\]";
- public string AssemblyInfoPath { get; set; }
-
- public override bool Execute()
- {
- try
- {
- if (String.IsNullOrEmpty(AssemblyInfoPath))
- throw new ArgumentException("AssemblyInfoPath must have a value");
-
- string[] content = File.ReadAllLines(AssemblyInfoPath, Encoding.Default);
- var rx = new Regex(VersionPattern);
-
- var newContent = new List<string>();
- content.ToList().ForEach(line =>
- {
- if (rx.IsMatch(line))
- line = VersionMatcher(rx.Match(line));
- newContent.Add(line);
- });
-
- File.WriteAllLines(AssemblyInfoPath, newContent);
-
- }
- catch(Exception ex)
- {
- Console.Out.WriteLine(ex);
- return false;
- }
-
- return true;
- }
-
- private string VersionMatcher(Match match)
- {
- int major = int.Parse(match.Groups[1].Value);
- int minor = int.Parse(match.Groups[2].Value);
- int build = int.Parse(match.Groups[3].Value);
- string revision = match.Groups[4].Value;
-
- Console.WriteLine("AutoIncrement Assembly {0}", Path.GetFileName(AssemblyInfoPath));
- Console.WriteLine("Current matched version: {0}.{1}.{2}.{3}", major, minor, build, revision);
-
- ++build;
- 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));
- Console.WriteLine("Incremented to version: {0}.{1}.{2}.{3}", major, minor, build, revision);
-
- string result = match.Result("[assembly: AssemblyFileVersion(\"$1.$2.{0}.{1}\")]");
- return String.Format(result, build, revision);
- }
- }
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 #