commandline icon indicating copy to clipboard operation
commandline copied to clipboard

Terse syntax C# command line parser for .NET with F# support

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

Are there any chance of getting a stable version of the 2.0 out?

question

override ToString for options to have it display all the options and their values. this is for debugging purposes. Similar to the --help but instead of help text, shows values.

I have an app that works fine when ran from the console but fails in visual studio. Seems the last 2 characters a single command, like "app --late" is "--late\r\n"...

I would like to be able to pass arrays to my app. To do so I have to use string valued options and parse them myself. Is it possible to...

As pointed out in #179 ([this comment](https://github.com/gsscoder/commandline/issues/179#issuecomment-305918432) specifically), some changes applied to the source code, especially the API, have not been documented. In my particular case, I spent the better...

On https://github.com/gsscoder/commandline/tree/stable-1.9.71.2 the link to the Public API page is dead. It points to https://github.com/gsscoder/commandline/blob/master/doc/PublicAPI.md under "Public API", which goes to the 404 page of github. `Latest changes are recorded...

In the v2 branch, I want to ignore case, but I want to keep the default help output. How do I combine multiple custom options in the constructor? Or how...

When using the "Usage" attribute together with a 2nd one (e.g. ExcludeFromCoverage) like this: [Usage] [ExcludeFromCodeCoverage] public static IEnumerable Examples ... In this situation displaying "help" will cause an exception....

During code analys it is better to have ability to decompile code to understand, what it does. In this case it is better to add pdb files to final nuget...

Hey, The documentation in the README says to use: ```csharp static int Main(string[] args) { var options = new Options(); var isValid = CommandLine.Parser.Default.ParseArgumentsStrict(args, options); ``` However this ParseArgumentsStrict method...

question