From: Mac Clayton Date: Thu, 10 Dec 2020 04:35:58 +0000 (-0600) Subject: Fix vswhere path to work with spaces by surrounding it with quotes (#44913) X-Git-Tag: submit/tizen/20210909.063632~4217 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=663d431c3d8240f8b3d64ae3b3f5e52fb8d3154a;p=platform%2Fupstream%2Fdotnet%2Fruntime.git Fix vswhere path to work with spaces by surrounding it with quotes (#44913) Some local .nuget paths may contain spaces (ex. C:\Users\First Last\.nuget). Surrounding it with quotes allows the command path to have spaces --- diff --git a/src/coreclr/ToolBox/SOS/DacTableGen/DacTableGen.csproj b/src/coreclr/ToolBox/SOS/DacTableGen/DacTableGen.csproj index 9bba95a..f9e3f23 100644 --- a/src/coreclr/ToolBox/SOS/DacTableGen/DacTableGen.csproj +++ b/src/coreclr/ToolBox/SOS/DacTableGen/DacTableGen.csproj @@ -14,7 +14,7 @@ - $([MSBuild]::NormalizePath('$(Pkgvswhere)','tools','vswhere.exe')) + "$([MSBuild]::NormalizePath('$(Pkgvswhere)','tools','vswhere.exe'))" - \ No newline at end of file +