commandline
commandline copied to clipboard
The best C# command line parser that brings standardized *nix getopt style, for .NET. Includes F# support
The old version allowed us to create an OptionsBase class. Most of it was easily migrated to the new lib API, but I'm not sure how to tackle the Usage/Help...
The current constructor of ```OptionAttribute``` only allows for 1 character shortName, although the property ```ShortName``` itself is of type ```string```. Which prevents us from creating options with more than 1...
> [](https://github.com/JeanSebTr) **Comment by [JeanSebTr](https://github.com/JeanSebTr)** > _Wednesday Apr 27, 2016 at 18:43 GMT_ > > _...snip..._ > > I'll check to clean that up and make a pull request (I've...
I would like to keep everything as is just have the additional newlines removed in the help output. I have been trying to achieve this for one hour now, but...
Out of interest now when I use `--help` I get the help listed twice: ``` C:\Program Files (x86)\Meeting Schedule Assistant\OutlookCalIFConsole>outlookcalifconsole --help OutlookCalIFConsole 2018.4.4.1 Copyright c 2017 - 2018 -l, --list...
I want to show the verbs help when you provide no arguments: `tool` --> Shows verbs help. `tool arg1 arg2` --> Executes default verb with those args. By default, it...
I listed the licenses of package dependencies of a Visual Studio 2019 solution project in the NuGet Package Manager Console with `Get-Package | Select-Object Id,LicenseUrl` but got for CommandLineParser v2.8.0...
Changing the Console.Error throws System.ObjectDisposedException Console.Error can be changed using Console.SetError() method, so having this as a static reference prevents using the "newly" assigned TextWriter as it keeps the referenced...
Are they any call backs for autogenerated help / error/ usage sections allowing to call something like `Console.ForegroundColor = ..` ?
A requirement for my project involves that the command line arguments that I pass in look like `argumentKey=argumentValue`. I recognize that this tool defaults to parsing items as `--argumentKey=argumentValue`. So...