Skip to content

Commit 27e89cb

Browse files
authored
Merge pull request #9980 from hvitved/csharp/lua-tracer-improvements
C#: Also disable shared compilation in the tracer for `dotnet msbuild`
2 parents d2007bc + 4000710 commit 27e89cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

csharp/tools/tracing-config.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ function RegisterExtractorPack(id)
3131
local firstCharacter = string.sub(arg, 1, 1)
3232
if not (firstCharacter == '-') and not (firstCharacter == '/') then
3333
Log(1, 'Dotnet subcommand detected: %s', arg)
34-
if arg == 'build' then match = true end
34+
if arg == 'build' or arg == 'msbuild' then match = true end
3535
break
3636
end
3737
end

0 commit comments

Comments
 (0)