We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2659ee commit 6fe9b70Copy full SHA for 6fe9b70
csharp/tools/tracing-config.lua
@@ -84,6 +84,10 @@ function RegisterExtractorPack(id)
84
dotnetRunNeedsSeparator = false
85
dotnetRunInjectionIndex = i
86
end
87
+ -- if we encounter a whitespace, we explicitly need to quote the argument.
88
+ if OperatingSystem == 'windows' and arg:match('%s') then
89
+ argv[i] = '"' .. arg .. '"'
90
+ end
91
92
if match then
93
local injections = { '-p:UseSharedCompilation=false', '-p:EmitCompilerGeneratedFiles=true' }
0 commit comments