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 191 commandline issues
Sort by recently updated
recently updated
newest added

I'm not sure whether or not what I describe is part of the GNU getopt standard. But `ssh` is a good example for what I'm trying to do. Anyone using...

question

Sorry for question as issue, googled a bit and had no luck. Is the F# matching support meant to work with verbs? I'm trying ```fs [] type UploadOptions = {...

### Some examples of the use of WithParsed / WithParsedAsync with expected behavior ``` internal static class Program { private static void Main(string[] args) { Parser.Default.ParseArguments(args).WithParsed(_ => throw new Exception());...

Hi everyone, I'm trying to parse a command line (imposed, no way to change it) which are like ``` myexe.exe -Url=https://blabla.com/ --AppName=val1 -e testCase -monoapp Open -Ctx "default ctx" ```...

This PR adds a setting to use single dashes for command line options. As several others in issue #685 we wanted to switch to this library, since it is more...

Hi, Spotted this while going through your docs and as it says in the title it is very minor. The section ShorName is missing a "t" and should be ShortName....

Fixes #363 The problem shows up when using an argument like this: ```csharp [Value(0, Min = 1, HelpText = "Path(s) to file(s)", Required = true)] public IEnumerable FilePaths { get;...

This is one of those completely minor items, but I think a slight usability improvement. When adding usage examples, the ordering of the arguments appear to be in alphabetic order...

The Quick start sample in Readme.md gives the impression that boolean parameter can be specified with either a true or false value. However my attemps have given the following: -...

Hi, this seems strange, but I'm having problem with using Parser like: --parameter "-someValue", because Parser treats "-someValue" as Option, which can't find. Here in wiki, we can see --suffix...