What I did was create a BuildCommon.targets that automatically searches for the AssemblyInfo and updates the version number that matches the build number as generated by TFS, and check this file in your codetree. In our case the file is named: BuildCommon.targets and is placed next to the root of the solution:
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <!-- Defining custom Targets to execute before project compilation starts. --> <PropertyGroup> <CompileDependsOn> CommonBuildDefineModifiedAssemblyVersion; $(CompileDependsOn); </CompileDependsOn> </PropertyGroup> <!-- Creates modified version of AssemblyInfo.cs, replaces [AssemblyVersion] attribute with the one specifying actual build version (from MSBuild properties), and includes that file instead of the original AssemblyInfo.cs in the compilation. Works with both, .cs and .vb version of the AssemblyInfo file, meaning it supports C# and VB.Net projects simultaneously. --> <Target Name="CommonBuildDefineModifiedAssemblyVersion" Condition="'$(VersionAssembly)' != ''"> <!-- Find AssemblyInfo.cs or AssemblyInfo.vb in the "Compile" Items. Remove it from "Compile" Items because we will use a modified version instead. --> <PropertyGroup> <VersionAssembly>$([System.Text.RegularExpressions.Regex]::Replace($(VersionAssembly), `[\w|\D]+_`, ``, System.Text.RegularExpressions.RegexOptions.IgnoreCase))</VersionAssembly> </PropertyGroup> <ItemGroup> <OriginalAssemblyInfo Include="@(Compile)" Condition="(%(Filename) == 'AssemblyInfo') And (%(Extension) == '.vb' Or %(Extension) == '.cs')" /> <Compile Remove="**/AssemblyInfo.vb" /> <Compile Remove="**/AssemblyInfo.cs" /> </ItemGroup> <!-- Copy the original AssemblyInfo.cs/.vb to obj\ folder, i.e. $(IntermediateOutputPath). The copied filepath is saved into @(ModifiedAssemblyInfo) Item. --> <Copy SourceFiles="@(OriginalAssemblyInfo)" DestinationFiles="@(OriginalAssemblyInfo->'$(IntermediateOutputPath)%(Identity)')"> <Output TaskParameter="DestinationFiles" ItemName="ModifiedAssemblyInfo"/> </Copy> <!-- Replace the version bit (in AssemblyVersion and AssemblyFileVersion attributes) using regular expression. Use the defined property: $(VersionAssembly). --> <Message Text="Setting AssemblyVersion to $(VersionAssembly)" /> <RegexUpdateFile Files="@(ModifiedAssemblyInfo)" Regex="Version\("(\d+)\.(\d+)(\.(\d+)\.(\d+)|\.*)"\)" ReplacementText="Version("$(VersionAssembly)")" /> <!-- Include the modified AssemblyInfo.cs/.vb file in "Compile" items (instead of the original). --> <ItemGroup> <Compile Include="@(ModifiedAssemblyInfo)" /> </ItemGroup> </Target> <UsingTask TaskName="RegexUpdateFile" TaskFactory="CodeTaskFactory" AssemblyFile="$(MSBuildToolsPath)\Microsoft.Build.Tasks.v4.0.dll"> <ParameterGroup> <Files ParameterType="Microsoft.Build.Framework.ITaskItem[]" Required="true" /> <Regex ParameterType="System.String" Required="true" /> <ReplacementText ParameterType="System.String" Required="true" /> </ParameterGroup> <Task> <Reference Include="System.Core" /> <Using Namespace="System" /> <Using Namespace="System.IO" /> <Using Namespace="System.Text.RegularExpressions" /> <Using Namespace="Microsoft.Build.Framework" /> <Using Namespace="Microsoft.Build.Utilities" /> <Code Type="Fragment" Language="cs"> <![CDATA[ try { var rx = new System.Text.RegularExpressions.Regex(this.Regex); for (int i = 0; i < Files.Length; ++i) { var path = Files[i].GetMetadata("FullPath"); if (!File.Exists(path)) continue; var txt = File.ReadAllText(path); txt = rx.Replace(txt, this.ReplacementText); File.WriteAllText(path, txt); } return true; } catch (Exception ex) { Log.LogErrorFromException(ex); return false; } ]]> </Code> </Task> </UsingTask> </Project>
Then change the build number format to:
$(BuildDefinitionName)_0.1.$(Year:yy)$(DayOfYear)$(Rev:.r)
and the MSBuild arguments:
/p:CustomAfterMicrosoftCommonTargets="$(TF_BUILD_SOURCESDIRECTORY)\src\BuildCommon.targets" /p:RunOctoPack=true /p:OctoPackPublishApiKey=API-123465 /p:OctoPackPublishPackageToHttp=http://octopus-server/nuget/packages /p:VersionAssembly=$(TF_BUILD_BUILDNUMBER)
This should result in unique assembly versions for each build.
Many thanks for the creators of these posts to help me create this:
http://www.lionhack.com/2014/02/13/msbuild-override-assembly-version/
http://blog.casavian.eu/blog/2014/04/23/increment-version-for-changed-assemblies-only-first-part/
http://blogs.msdn.com/b/visualstudio/archive/2010/04/02/msbuild-property-functions.aspx
Cheers,
Luuk