12 references to EnvironmentVariableConstants
NuGet.Protocol (12)
Plugins\ConnectionOptions.cs (2)
138
var handshakeTimeoutInSeconds = reader.GetEnvironmentVariable(
EnvironmentVariableConstants
.HandshakeTimeout);
139
var requestTimeoutInSeconds = reader.GetEnvironmentVariable(
EnvironmentVariableConstants
.RequestTimeout);
Plugins\Logging\EnvironmentVariablesLogMessage.cs (3)
23
_handshakeTimeout = Read(reader,
EnvironmentVariableConstants
.HandshakeTimeout);
24
_idleTimeout = Read(reader,
EnvironmentVariableConstants
.IdleTimeout);
25
_requestTimeout = Read(reader,
EnvironmentVariableConstants
.RequestTimeout);
Plugins\Logging\PluginLogger.cs (2)
35
var value = environmentVariableReader.GetEnvironmentVariable(
EnvironmentVariableConstants
.EnableLog);
41
_logDirectoryPath = environmentVariableReader.GetEnvironmentVariable(
EnvironmentVariableConstants
.LogDirectoryPath);
Plugins\PluginDiscoverer.cs (2)
41
_netCoreOrNetFXPluginPaths = environmentVariableReader.GetEnvironmentVariable(
EnvironmentVariableConstants
.CorePluginPaths);
46
_nuGetPluginPaths = _environmentVariableReader.GetEnvironmentVariable(
EnvironmentVariableConstants
.PluginPaths);
Plugins\PluginManager.cs (3)
319
var idleTimeoutInSeconds = EnvironmentVariableReader.GetEnvironmentVariable(
EnvironmentVariableConstants
.IdleTimeout);
365
pluginEnvVariable = EnvironmentVariableReader.GetEnvironmentVariable(
EnvironmentVariableConstants
.CorePluginPaths);
367
pluginEnvVariable ??= EnvironmentVariableReader.GetEnvironmentVariable(
EnvironmentVariableConstants
.PluginPaths);