4 references to NoProjectUpdatesKey
dotnet-svcutil-lib (4)
CommandProcessorOptions.cs (1)
77
public readonly CommandSwitch NoProjectUpdates = new CommandSwitch(
NoProjectUpdatesKey
, "npu", SwitchType.Flag, OperationalContext.Infrastructure);
Shared\Options\SvcutilOptions.cs (3)
37
public bool? NoProjectUpdates { get { return GetValue<bool?>(
NoProjectUpdatesKey
); } set { SetValue(
NoProjectUpdatesKey
, value); } }
56
new SingleValueOption<bool>(
NoProjectUpdatesKey
),