4 references to NoBootstrappingKey
dotnet-svcutil-lib (4)
CommandProcessorOptions.cs (1)
75
public readonly CommandSwitch NoBootstraping = new CommandSwitch(
NoBootstrappingKey
, "nb", SwitchType.Flag, OperationalContext.Infrastructure);
Shared\Options\SvcutilOptions.cs (3)
35
public bool? NoBootstrapping { get { return GetValue<bool?>(
NoBootstrappingKey
); } set { SetValue(
NoBootstrappingKey
, value); } }
54
new SingleValueOption<bool>(
NoBootstrappingKey
),