Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ Copyright (c) .NET Foundation. All rights reserved.
-->
<PropertyGroup>
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
<GeneratedAssemblyInfoFile Condition="'$(GeneratedAssemblyInfoFile)' ==''">$(IntermediateOutputPath)$(MSBuildProjectName).AssemblyInfo$(DefaultLanguageSourceExtension)</GeneratedAssemblyInfoFile>
<GenerateAssemblyInfo Condition="'$(GenerateAssemblyInfo)' == ''">true</GenerateAssemblyInfo>
</PropertyGroup>

Expand Down Expand Up @@ -48,10 +47,7 @@ Copyright (c) .NET Foundation. All rights reserved.
DependsOnTargets="PrepareForBuild;GetAssemblyVersion;CoreGenerateAssemblyInfo"
Condition="'$(GenerateAssemblyInfo)' == 'true'" />

<Target Name="CoreGenerateAssemblyInfo"
Condition="'$(Language)'=='VB' or '$(Language)'=='C#'"
Inputs="$(MSBuildAllProjects)"
Outputs="$(GeneratedAssemblyInfoFile)">
<Target Name="_CalculateAssemblyAttributes">
<ItemGroup>
<AssemblyAttribute Include="System.Reflection.AssemblyCompanyAttribute" Condition="'$(Company)' != '' and '$(GenerateAssemblyCompanyAttribute)' == 'true'">
<_Parameter1>$(Company)</_Parameter1>
Expand Down Expand Up @@ -84,7 +80,29 @@ Copyright (c) .NET Foundation. All rights reserved.
<_Parameter1>$(NeutralLanguage)</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
</Target>

<!--
To allow version changes to be respected on incremental builds (e.g. through CLI parameters),
create a hash of all assembly attributes so that the output file name will change with the calculated
assembly attribute values and msbuild will then execute CoreGenerateAssembly to generate the new file.
-->
<Target Name="_CalculateGeneratedAssemblyInfoFileName" DependsOnTargets="_CalculateAssemblyAttributes">
<Hash ItemsToHash="@(AssemblyAttribute->'%(Identity)%(_Parameter1)')">
<Output TaskParameter="HashResult" PropertyName="_AssemblyAttributeContentHash" />
</Hash>

<PropertyGroup>
<GeneratedAssemblyInfoFile Condition=" '$(_AssemblyAttributeContentHash)' != '' ">$(IntermediateOutputPath)$(MSBuildProjectName).AssemblyInfo.$(_AssemblyAttributeContentHash.SubString(0,6))$(DefaultLanguageSourceExtension)</GeneratedAssemblyInfoFile>
<GeneratedAssemblyInfoFile Condition=" '$(GeneratedAssemblyInfoFile)' == '' ">$(IntermediateOutputPath)$(MSBuildProjectName).AssemblyInfo$(DefaultLanguageSourceExtension)</GeneratedAssemblyInfoFile>
</PropertyGroup>
</Target>

<Target Name="CoreGenerateAssemblyInfo"
Condition="'$(Language)'=='VB' or '$(Language)'=='C#'"
DependsOnTargets="_CalculateAssemblyAttributes;_CalculateGeneratedAssemblyInfoFileName"
Inputs="$(MSBuildAllProjects)"
Outputs="$(GeneratedAssemblyInfoFile)">
<ItemGroup>
<!-- Ensure the generated assemblyinfo file is not already part of the Compile sources, as a workaround for https://github.com/dotnet/sdk/issues/114 -->
<Compile Remove="$(GeneratedAssemblyInfoFile)" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using System.Collections.Generic;
using System.Linq;
using System.IO;
using Microsoft.NET.TestFramework;
using Microsoft.NET.TestFramework.Assertions;
Expand Down Expand Up @@ -112,5 +113,56 @@ public void It_respects_version_prefix(string targetFramework)
info["AssemblyFileVersionAttribute"].Should().Be("1.2.3.0");
info["AssemblyInformationalVersionAttribute"].Should().Be("1.2.3");
}

[Theory]
[InlineData("netcoreapp1.1")]
[InlineData("net45")]
public void It_respects_version_changes_on_incremental_build(string targetFramework)
{
if (targetFramework == "net45" && !RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
{
return;
}

// Given a project that has already been built
var testAsset = _testAssetsManager
.CopyTestAsset("HelloWorld", identifier: targetFramework)
.WithSource()
.Restore("", $"/p:OutputType=Library;TargetFramework={targetFramework}");
BuildProject(versionPrefix: "1.2.3");
var fullBuildAssemblyInfo = FindAssemblyInfo();

// When the same project is built again using a different VersionPrefix proeprty
var incrementalBuildCommand = BuildProject(versionPrefix: "1.2.4");
var incrementalBuildAssemblyInfo = FindAssemblyInfo();

// Then the version of the built assembly shall match the provided VersionPrefix
var assemblyPath = Path.Combine(incrementalBuildCommand.GetOutputDirectory(targetFramework).FullName, "HelloWorld.dll");
var info = AssemblyInfo.Get(assemblyPath);
info["AssemblyVersionAttribute"].Should().Be("1.2.4.0");

// And the assembly info filename must have changed
incrementalBuildAssemblyInfo.Should().NotBe(fullBuildAssemblyInfo);

// And the previous assembly info must have been deleted (by IncrementalClean)
File.Exists(fullBuildAssemblyInfo).Should().BeFalse();

BuildCommand BuildProject(string versionPrefix)
{
var command = new BuildCommand(Stage0MSBuild, testAsset.TestRoot);
command.Execute($"/p:OutputType=Library;TargetFramework={targetFramework};VersionPrefix={versionPrefix}")
.Should()
.Pass();
return command;
}

string FindAssemblyInfo()
{
var expectedAssemblyInfoLocation = Path.Combine(testAsset.TestRoot, "obj", "Debug", targetFramework);
var matches = Directory.EnumerateFiles(expectedAssemblyInfoLocation, "*AssemblyInfo*.cs", SearchOption.TopDirectoryOnly).ToList();
matches.Count.Should().Be(1, "only a single assembly info file should exist");
return matches[0];
}
}
}
}
3 changes: 2 additions & 1 deletion test/Microsoft.NET.Build.Tests/GivenThereAreDefaultItems.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
using System.IO;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Xml.Linq;
using Xunit;
using static Microsoft.NET.TestFramework.Commands.MSBuildTest;
Expand Down Expand Up @@ -561,7 +562,7 @@ void RemoveGeneratedCompileItems(List<string> compileItems)
// { AssemblyName}.AssemblyInfo.cs in the intermediate output path
var itemsToRemove = compileItems.Where(i =>
i.EndsWith("AssemblyAttributes.cs", System.StringComparison.OrdinalIgnoreCase) ||
i.EndsWith("AssemblyInfo.cs", StringComparison.OrdinalIgnoreCase))
Regex.IsMatch(i, ".*AssemblyInfo(.[0-9a-z]{6})?.cs$"))
.ToList();

foreach (var itemToRemove in itemsToRemove)
Expand Down