2 writes to Out
dotnet-openapi (2)
Application.cs (1)
27
Out
= output ?? Out;
Commands\BaseCommand.cs (1)
38
Out
= parent.Out ?? Out;
13 references to Out
dotnet-openapi (13)
Application.cs (1)
27
Out = output ??
Out
;
Commands\BaseCommand.cs (6)
38
Out = parent.
Out
??
Out
;
60
get { return
Out
; }
248
await
Out
.WriteAsync(output);
521
await
Out
.WriteLineAsync($"Downloading to '{destinationPath}'.");
544
await
Out
.WriteLineAsync($"Not overwriting existing and matching file '{destinationPath}'.");
src\Shared\CommandLineUtils\CommandLine\CommandLineApplication.cs (6)
424
Out
.WriteLine(string.Format(CultureInfo.CurrentCulture, "Specify --{0} for a list of available options and commands.", OptionHelp.LongName));
436
Out
.WriteLine(GetHelpText(commandName));
554
Out
.WriteLine(FullName);
555
Out
.WriteLine(LongVersionGetter());
571
Out
.WriteLine(rootCmd.GetFullNameAndVersion());
572
Out
.WriteLine();