C#: Also disable shared compilation in the tracer for `dotnet msbuild`

This commit is contained in:
Tom Hvitved 2022-08-05 13:45:25 +02:00
Родитель ba2cee07a9
Коммит 400071091c
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -31,7 +31,7 @@ function RegisterExtractorPack(id)
local firstCharacter = string.sub(arg, 1, 1)
if not (firstCharacter == '-') and not (firstCharacter == '/') then
Log(1, 'Dotnet subcommand detected: %s', arg)
if arg == 'build' then match = true end
if arg == 'build' or arg == 'msbuild' then match = true end
break
end
end