C#: Set environment variables for proxy for calls to dotnet

This commit is contained in:
Michael B. Gale
2024-11-19 13:23:05 +00:00
parent 8ca75602d8
commit 6cd5711313
2 changed files with 14 additions and 4 deletions

View File

@@ -44,10 +44,6 @@ namespace Semmle.Extraction.CSharp.DependencyFetching
// Configure the proxy settings, if applicable.
this.proxy.ApplyProxy(this.logger, startInfo);
this.logger.LogInfo(startInfo.EnvironmentVariables["HTTP_PROXY"] ?? "");
this.logger.LogInfo(startInfo.EnvironmentVariables["HTTPS_PROXY"] ?? "");
this.logger.LogInfo(startInfo.EnvironmentVariables["SSL_CERT_FILE"] ?? "");
return startInfo;
}