commandline icon indicating copy to clipboard operation
commandline copied to clipboard

The best C# command line parser that brings standardized *nix getopt style, for .NET. Includes F# support

Results 186 commandline issues
Sort by recently updated
recently updated
newest added

**Describe the bug** When no long or short name is provided for an option, the help display this option in lowercase **To Reproduce** Run this console program adding in the...

I have been using CommandLineParser for a while now (and it's changed how I build tools -- thank you!) including in a program with ~50 Verbs (and growing), and since...

awaiting response

**Describe the bug** var parser = new Parser(opts => { opts.GetoptMode = true; }); result = parser.ParseArguments.... opts.GetoptMode = true causes the help to be suppressed **To Reproduce** Make your...

How to output all commands and options through `--help` Similar to `--help full`

``` C# public class Arguments { [Option("arg1", Required = true)] public string Arg1 { get; set; } [Option("arg2", Required = true)] public IEnumerable Arg2 { get; set; } } ```...

Is it possible to set constraints to an int option so that it have min and max allowed values? I think that's a pretty common scenario, but the following fails:...

Hi, I have 2 options, both required; the first is of type EventType (enum with 3 values: dpo, plms, ts); the second is of type NoticeType (enum with 3 values:...

**Describe the bug** When I call my program with the following arguments : "help verb1", I expect that the help for this specific verb was displayed. But instead, the help...

Hi, This is not a bug, but question. I could see such release: https://github.com/commandlineparser/commandline/releases/tag/v2.9.2-preview1 was done on May 17th 2022, i.e. more than 1 year ago. Would that mean that...

- If it's not a missing option value case, then the localized string should be `Properties.Resources.SentenceBadFormatConversionErrorValue` which is consistent with other cases in the code. - Make `SentenceBadFormatConversionErrorOption` an english...