C#: Also inject /p:UseSharedCompilation=false into dotnet publish

This commit is contained in:
Tom Hvitved
2022-09-02 13:51:22 +02:00
parent 7dc5bdafe3
commit 7c12139c9e

View File

@@ -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' or arg == 'msbuild' then match = true end
if arg == 'build' or arg == 'msbuild' or arg == 'publish' then match = true end
break
end
end