Quote temp path output and input in crossgen (#5089)

Fixes #5088
This commit is contained in:
Zlatko Knezevic 2016-12-20 11:36:48 -08:00 committed by GitHub
parent 06396ddc40
commit 7a2c6ad086

View file

@ -98,12 +98,12 @@ namespace Microsoft.DotNet.Build.Tasks
private string GetInPath()
{
return $"-in {SourceAssembly}";
return $"-in \"{SourceAssembly}\"";
}
private string GetOutPath()
{
return $"-out {TempOutputPath}";
return $"-out \"{TempOutputPath}\"";
}
private string GetPlatformAssemblyPaths()