13 references to Global
dotnet-svcutil-lib (12)
Bootstrapper\SvcutilBootstrapper.cs (1)
37
if (this.Options.ToolContext.HasValue && this.Options.ToolContext.Value <= OperationalContext.
Global
)
CommandProcessorOptions.cs (9)
82
public readonly CommandSwitch OutputDirectory = new CommandSwitch(OutputDirKey, "d", SwitchType.SingletonValue, OperationalContext.
Global
);
83
public readonly CommandSwitch OutputFile = new CommandSwitch(OutputFileKey, "o", SwitchType.SingletonValue, OperationalContext.
Global
);
84
public readonly CommandSwitch ProjectFile = new CommandSwitch(ProjectFileKey, "pf", SwitchType.SingletonValue, OperationalContext.
Global
);
86
public readonly CommandSwitch RuntimeIdentifier = new CommandSwitch(RuntimeIdentifierKey, "ri", SwitchType.SingletonValue, OperationalContext.
Global
);
90
public readonly CommandSwitch TargetFramework = new CommandSwitch(TargetFrameworkKey, "tf", SwitchType.SingletonValue, OperationalContext.
Global
);
97
public readonly CommandSwitch Language = new CommandSwitch(LanguageKey, "l", SwitchType.SingletonValue, OperationalContext.
Global
);
155
.Where(s => !s_cmdLineOverwriteSwitches.Contains(s.Name) && s.SwitchLevel <= OperationalContext.
Global
&& options.Any(o =>
445
if (!IsUpdateOperation && this.ToolContext <= OperationalContext.
Global
&& File.Exists(filePath))
625
await logger.WriteMessageAsync(Shared.Resources.ResolvingProjectReferences, logToUI: this.ToolContext <= OperationalContext.
Global
).ConfigureAwait(false);
Tool.cs (2)
175
if (options?.ToolContext <= OperationalContext.
Global
)
400
if (options == null || options.ToolContext <= OperationalContext.
Global
)
dotnet-svcutil-lib.Tests (1)
GlobalToolTests.cs (1)
212
options.ToolContext = Microsoft.Tools.ServiceModel.Svcutil.OperationalContext.
Global
;