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.
2 parents b039328 + fa3130c commit 6df313bCopy full SHA for 6df313b
csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/DotNetCliInvoker.cs
@@ -31,6 +31,8 @@ private ProcessStartInfo MakeDotnetStartInfo(string args)
31
};
32
// Set the .NET CLI language to English to avoid localized output.
33
startInfo.EnvironmentVariables["DOTNET_CLI_UI_LANGUAGE"] = "en";
34
+ startInfo.EnvironmentVariables["MSBUILDDISABLENODEREUSE"] = "1";
35
+ startInfo.EnvironmentVariables["DOTNET_SKIP_FIRST_TIME_EXPERIENCE"] = "true";
36
return startInfo;
37
}
38
0 commit comments