Merge pull request #15491 from tamasvajk/feature/node-reuse-autobuild

C#: Disable msbuild node reuse in autobuild
This commit is contained in:
Tamás Vajk
2024-02-01 09:26:32 +01:00
committed by GitHub

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 }
};
}