4 references to NoTelemetryKey
dotnet-svcutil-lib (4)
CommandProcessorOptions.cs (1)
78
public readonly CommandSwitch NoTelemetry = new CommandSwitch(
NoTelemetryKey
, "nm", SwitchType.Flag, OperationalContext.Infrastructure);
Shared\Options\SvcutilOptions.cs (3)
38
public bool? NoTelemetry { get { return GetValue<bool?>(
NoTelemetryKey
); } set { SetValue(
NoTelemetryKey
, value); } }
57
new SingleValueOption<bool>(
NoTelemetryKey
),