9 references to EnvVariables
Microsoft.NET.Build.Containers (9)
Registry\RegistrySettings.cs (9)
15
ChunkedUploadSizeBytes = environment.GetEnvironmentVariableAsNullableInt(
EnvVariables
.ChunkedUploadSizeBytes) ??
16
environment.GetEnvironmentVariableAsNullableInt(
EnvVariables
.ChunkedUploadSizeBytesLegacy);
17
ForceChunkedUpload = Environment.GetEnvironmentVariable(
EnvVariables
.ForceChunkedUpload) is not null ?
18
environment.GetEnvironmentVariableAsBool(
EnvVariables
.ForceChunkedUpload, defaultValue: false) :
19
environment.GetEnvironmentVariableAsBool(
EnvVariables
.ForceChunkedUploadLegacy, defaultValue: false);
20
ParallelUploadEnabled = Environment.GetEnvironmentVariable(
EnvVariables
.ParallelUploadEnabled) is not null ?
21
environment.GetEnvironmentVariableAsBool(
EnvVariables
.ParallelUploadEnabled, defaultValue: true) :
22
environment.GetEnvironmentVariableAsBool(
EnvVariables
.ParallelUploadEnabledLegacy, defaultValue: true);
82
string? insecureRegistriesEnv = environment.GetEnvironmentVariable(
EnvVariables
.InsecureRegistries);