12 references to EnvironmentVariableConstants
NuGet.Protocol (12)
Plugins\ConnectionOptions.cs (2)
136
var handshakeTimeoutInSeconds = reader.GetEnvironmentVariable(
EnvironmentVariableConstants
.HandshakeTimeout);
137
var requestTimeoutInSeconds = reader.GetEnvironmentVariable(
EnvironmentVariableConstants
.RequestTimeout);
Plugins\Logging\EnvironmentVariablesLogMessage.cs (3)
21
_handshakeTimeout = Read(reader,
EnvironmentVariableConstants
.HandshakeTimeout);
22
_idleTimeout = Read(reader,
EnvironmentVariableConstants
.IdleTimeout);
23
_requestTimeout = Read(reader,
EnvironmentVariableConstants
.RequestTimeout);
Plugins\Logging\PluginLogger.cs (2)
33
var value = environmentVariableReader.GetEnvironmentVariable(
EnvironmentVariableConstants
.EnableLog);
39
_logDirectoryPath = environmentVariableReader.GetEnvironmentVariable(
EnvironmentVariableConstants
.LogDirectoryPath);
Plugins\PluginDiscoverer.cs (2)
39
_netCoreOrNetFXPluginPaths = environmentVariableReader.GetEnvironmentVariable(
EnvironmentVariableConstants
.CorePluginPaths);
44
_nuGetPluginPaths = _environmentVariableReader.GetEnvironmentVariable(
EnvironmentVariableConstants
.PluginPaths);
Plugins\PluginManager.cs (3)
322
var idleTimeoutInSeconds = EnvironmentVariableReader.GetEnvironmentVariable(
EnvironmentVariableConstants
.IdleTimeout);
368
pluginEnvVariable = EnvironmentVariableReader.GetEnvironmentVariable(
EnvironmentVariableConstants
.CorePluginPaths);
370
pluginEnvVariable ??= EnvironmentVariableReader.GetEnvironmentVariable(
EnvironmentVariableConstants
.PluginPaths);