7 references to OutputDirKey
dotnet-svcutil-lib (7)
CommandProcessorOptions.cs (3)
81public readonly CommandSwitch OutputDirectory = new CommandSwitch(OutputDirKey, "d", SwitchType.SingletonValue, OperationalContext.Global); 378using (SafeLogger logger = await SafeLogger.WriteStartOperationAsync(this.Logger, $"Resolving {OutputDirKey} option ...").ConfigureAwait(false)) 399await logger.WriteMessageAsync($"{OutputDirKey}:\"{this.OutputDir}\"", logToUI: false).ConfigureAwait(false);
Shared\Options\SvcutilOptions.cs (4)
39public DirectoryInfo OutputDir { get { return GetValue<DirectoryInfo>(OutputDirKey); } set { SetValue(OutputDirKey, value); } } 58new SingleValueOption<DirectoryInfo>(OutputDirKey, OutputDirKey),