commandline
commandline copied to clipboard
--help doesn't work in v2.9.0-preview1
It looks like --help is broken in v2.9.0-preview1, preview3 is not on nuget.
But need AllowMultiInstance to use it with multiple same parameters.
Is this project abandoned? If so, please officially abandon it.
For anybody having this issue, you need to do add the HelpWriter yourself. 😅
Parser parser = new Parser(options =>
{
options.HelpWriter = Console.Error;
});