We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28f6daa commit 8b083f2Copy full SHA for 8b083f2
src/installer/tests/TestUtils/DotNetCli.cs
@@ -53,6 +53,7 @@ public Command Exec(string command, params string[] args)
53
newArgs.Insert(0, command);
54
55
return Command.Create(DotnetExecutablePath, newArgs)
56
+ .EnvironmentVariable("DOTNET_CLI_DO_NOT_USE_MSBUILD_SERVER", "1") // https://github.com/dotnet/runtime/issues/74328
57
.EnvironmentVariable("DOTNET_SKIP_FIRST_TIME_EXPERIENCE", "1")
58
.EnvironmentVariable("DOTNET_MULTILEVEL_LOOKUP", "0"); // Avoid looking at machine state by default
59
}
0 commit comments