17 references to Infrastructure
dotnet-svcutil-lib (17)
Bootstrapper\SvcutilBootstrapper.cs (3)
55
if (this.Options.ToolContext == OperationalContext.
Infrastructure
)
78
ToolConsole.WriteLineIf(ToolConsole.ToolModeLevel != OperationalContext.
Infrastructure
, Resource.BootstrappingApplicationMsg);
118
if (Options.ToolContext == OperationalContext.
Infrastructure
)
CommandProcessorOptions.cs (8)
65
public readonly CommandSwitch BootstrapDir = new CommandSwitch(BootstrapPathKey, "bd", SwitchType.SingletonValue, OperationalContext.
Infrastructure
);
67
public readonly CommandSwitch CultureName = new CommandSwitch(CultureInfoKey, "cn", SwitchType.SingletonValue, OperationalContext.
Infrastructure
);
69
public readonly CommandSwitch EnableLoggingMarkup = new CommandSwitch(EnableLoggingMarkupKey, "elm", SwitchType.Flag, OperationalContext.
Infrastructure
);
75
public readonly CommandSwitch NoBootstraping = new CommandSwitch(NoBootstrappingKey, "nb", SwitchType.Flag, OperationalContext.
Infrastructure
);
77
public readonly CommandSwitch NoProjectUpdates = new CommandSwitch(NoProjectUpdatesKey, "npu", SwitchType.Flag, OperationalContext.
Infrastructure
);
78
public readonly CommandSwitch NoTelemetry = new CommandSwitch(NoTelemetryKey, "nm", SwitchType.Flag, OperationalContext.
Infrastructure
);
89
public readonly CommandSwitch ToolContext = new CommandSwitch(ToolContextKey, "tc", SwitchType.SingletonValue, OperationalContext.
Infrastructure
);
820
if (this.ToolContext == OperationalContext.
Infrastructure
)
Metadata\ServiceDescriptor.cs (1)
104
if (OperationalCtx == OperationalContext.
Infrastructure
)
Tool.cs (2)
209
if (options.ToolContext != OperationalContext.
Infrastructure
)
252
ToolConsole.WriteLineIf(options.ToolContext != OperationalContext.
Infrastructure
, filePath, LogTag.Important);
ToolConsole.cs (3)
50
if (ToolConsole.Verbosity > Verbosity.Minimal && ToolConsole.ToolModeLevel != OperationalContext.
Infrastructure
)
201
if (condition && ToolConsole.Verbosity > Verbosity.Minimal && ToolConsole.ToolModeLevel != OperationalContext.
Infrastructure
)
214
if (ToolConsole.Verbosity > Verbosity.Silent && ToolConsole.ToolModeLevel != OperationalContext.
Infrastructure
)