1 implementation of GetEnvironmentVariable
dotnet (1)
src\sdk\artifacts\.packages\microsoft.codeanalysis.buildclient\5.12.0-1.26429.117\contentFiles\cs\net11.0\StandardBuildEnvironment.cs (1)
22
public string?
GetEnvironmentVariable
(string name) => Environment.GetEnvironmentVariable(name);
3 references to GetEnvironmentVariable
dotnet (3)
src\sdk\artifacts\.packages\microsoft.codeanalysis.buildclient\5.12.0-1.26429.117\contentFiles\cs\net11.0\CompilerServerLogger.cs (1)
166
var loggingFilePath = buildEnvironment.
GetEnvironmentVariable
(EnvironmentVariableName);
src\sdk\artifacts\.packages\microsoft.codeanalysis.buildclient\5.12.0-1.26429.117\contentFiles\cs\net11.0\RuntimeHostInfo.cs (2)
91
if (buildEnvironment.
GetEnvironmentVariable
(DotNetHostPathEnvironmentName) is { Length: > 0 } pathToDotNet)
96
if (buildEnvironment.
GetEnvironmentVariable
(DotNetExperimentalHostPathEnvironmentName) is { Length: > 0 } pathToDotNetExperimental)