From 74acc4003651ca50c416042bcea0451236d57cf8 Mon Sep 17 00:00:00 2001 From: Nick Guerrera Date: Wed, 21 Jun 2017 13:34:16 -0700 Subject: [PATCH] Add msbuild satellite assemblies --- src/tool_msbuild/tool_msbuild.csproj | 1 + test/dotnet-build.Tests/GivenDotnetBuildBuildsCsproj.cs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/tool_msbuild/tool_msbuild.csproj b/src/tool_msbuild/tool_msbuild.csproj index ba18663e9..7a109b08d 100644 --- a/src/tool_msbuild/tool_msbuild.csproj +++ b/src/tool_msbuild/tool_msbuild.csproj @@ -11,5 +11,6 @@ + diff --git a/test/dotnet-build.Tests/GivenDotnetBuildBuildsCsproj.cs b/test/dotnet-build.Tests/GivenDotnetBuildBuildsCsproj.cs index 30b16d53d..d6dc5a530 100644 --- a/test/dotnet-build.Tests/GivenDotnetBuildBuildsCsproj.cs +++ b/test/dotnet-build.Tests/GivenDotnetBuildBuildsCsproj.cs @@ -143,7 +143,7 @@ namespace Microsoft.DotNet.Cli.Build.Tests .WithWorkingDirectory(testInstance.Root) .ExecuteWithCapturedOutput(); cmd.Should().Pass(); - cmd.StdOut.Should().ContainVisuallySameFragment(expectedBuildSummary); + cmd.StdOut.Should().ContainVisuallySameFragmentIfNotLocalized(expectedBuildSummary); } } }