Implemented interface member:
method
GetEnvironmentVariableAsBool
Microsoft.DotNet.Cli.Utils.IEnvironmentProvider.GetEnvironmentVariableAsBool(System.String, System.Boolean)
6 references to GetEnvironmentVariableAsBool
dotnet (6)
Program.cs (5)
182
bool generateAspNetCertificate = environmentProvider.
GetEnvironmentVariableAsBool
(EnvironmentVariableNames.DOTNET_GENERATE_ASPNET_CERTIFICATE, defaultValue: true);
183
bool telemetryOptout = environmentProvider.
GetEnvironmentVariableAsBool
(EnvironmentVariableNames.TELEMETRY_OPTOUT, defaultValue: CompileOptions.TelemetryOptOutDefault);
184
bool addGlobalToolsToPath = environmentProvider.
GetEnvironmentVariableAsBool
(EnvironmentVariableNames.DOTNET_ADD_GLOBAL_TOOLS_TO_PATH, defaultValue: true);
185
bool nologo = environmentProvider.
GetEnvironmentVariableAsBool
(EnvironmentVariableNames.DOTNET_NOLOGO, defaultValue: false);
186
bool skipWorkloadIntegrityCheck = environmentProvider.
GetEnvironmentVariableAsBool
(EnvironmentVariableNames.DOTNET_SKIP_WORKLOAD_INTEGRITY_CHECK,
Telemetry\PersistenceChannel\PersistenceChannelDebugLog.cs (1)
18
return environmentProvider.
GetEnvironmentVariableAsBool
("DOTNET_ENABLE_PERSISTENCE_CHANNEL_DEBUG_OUTPUT", false);