C#: Disable msbuild node reuse in autobuild

This commit is contained in:
Tamas Vajk
2024-01-31 16:14:40 +01:00
parent 3d25ebc13c
commit 4608550e48

View File

@@ -94,6 +94,7 @@ namespace Semmle.Autobuild.CSharp
env = new Dictionary<string, string>{
{ "DOTNET_MULTILEVEL_LOOKUP", "false" }, // prevent look up of other .NET Core SDKs
{ "DOTNET_SKIP_FIRST_TIME_EXPERIENCE", "true" },
{ "MSBUILDDISABLENODEREUSE", "1" },
{ "PATH", installDir + delim + path }
};
}