From a55468ccbfc4ee355767a0852e6b1045974978d1 Mon Sep 17 00:00:00 2001 From: Andy Gocke Date: Fri, 10 Nov 2017 09:02:39 -0800 Subject: [PATCH] Upgrade CoreCLR toolset to work on Windows (#23110) The old package had a bug in RunCsc.cmd that didn't properly quote the dotnet path. When the SDK is upgraded to a sufficient version by VS, the full dotnet path will be used, which contains spaces and fails without proper quoting. This updates us to a package which contains almost the same compilers, but includes the fix for quoting the dotnet path properly (in PR #23034). --- build/Targets/Packages.props | 2 +- build/Targets/Settings.props | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/build/Targets/Packages.props b/build/Targets/Packages.props index 0eccfb6073b..48ab2866f22 100644 --- a/build/Targets/Packages.props +++ b/build/Targets/Packages.props @@ -51,7 +51,7 @@ 2.6.0-beta3-62227-02 2.6.0-beta1-62231-02 2.0.0 - 2.6.0-beta2-62211-02 + 2.6.0-beta3-62308-01 5.0.0 2.0.0 2.0.0 diff --git a/build/Targets/Settings.props b/build/Targets/Settings.props index 7e357c9ac7a..286476215c3 100644 --- a/build/Targets/Settings.props +++ b/build/Targets/Settings.props @@ -57,10 +57,10 @@ $(NuGetPackageRoot)/microsoft.csharp/$(MicrosoftCSharpVersion)/ref/netstandard1.0/ $(ToolsetPackagesDir)toolsetpackages.semaphore - Microsoft.Net.Compilers - Microsoft.NETCore.Compilers - $(MicrosoftNetCompilersVersion) - $(MicrosoftNETCoreCompilersVersion) + Microsoft.Net.Compilers + Microsoft.NETCore.Compilers + $(MicrosoftNetCompilersVersion) + $(MicrosoftNETCoreCompilersVersion) $(NuGetPackageRoot)/$(ToolsetCompilerPackageName.ToLower())/$(ToolsetCompilerPackageVersion)/build/$(ToolsetCompilerPackageName).props $(NuGetPackageRoot)\roslyntools.referenceassemblies\$(RoslynToolsReferenceAssembliesVersion)\tools\framework -- GitLab