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