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