4 references to ToolContextKey
dotnet-svcutil-lib (4)
CommandProcessorOptions.cs (1)
89
public readonly CommandSwitch ToolContext = new CommandSwitch(
ToolContextKey
, "tc", SwitchType.SingletonValue, OperationalContext.Infrastructure);
Shared\Options\SvcutilOptions.cs (3)
41
public OperationalContext? ToolContext { get { return GetValue<OperationalContext?>(
ToolContextKey
); } set { SetValue(
ToolContextKey
, value); } }
60
new SingleValueOption<OperationalContext>(
ToolContextKey
),