Currently all generated help text is sent to stderr (Console.Error) when an error occurs:
|
.Do((_, writer) => writer.Write(HelpText.AutoBuild(parserResult, maxDisplayWidth))) |
Wouldn't it make more sense to only send the actual error there, and send the rest of the help text (both before and after) to stdout (Console.Out)?
Currently all generated help text is sent to
stderr(Console.Error) when an error occurs:commandline/src/CommandLine/Parser.cs
Line 199 in 7aa501d
Wouldn't it make more sense to only send the actual error there, and send the rest of the help text (both before and after) to
stdout(Console.Out)?