4 references to HelpKey
dotnet-svcutil-lib (4)
CommandProcessorOptions.cs (1)
71
public readonly CommandSwitch Help = new CommandSwitch(
HelpKey
, "h", SwitchType.Flag);
Shared\Options\SvcutilOptions.cs (3)
34
public bool? Help { get { return GetValue<bool>(
HelpKey
); } set { SetValue(
HelpKey
, value); } }
53
new SingleValueOption<bool>(
HelpKey
),