commandline
commandline copied to clipboard
Terse syntax C# command line parser for .NET with F# support
Add ReSharper annotations for attributes. This request resolves #422 issue.
Resolves #424
I'm working with the stable build (1.9.71). I am trying to set up mutually exclusive options. I have set a mutual exclusion group, and given each option a different string....
Please submit issues to https://github.com/commandlineparser/commandline/issues and Pull requests to https://github.com/commandlineparser/commandline/pulls Any new issues here will be CLOSED. At a point near future, we'll import OPEN ISSUES only into the new...
I was reviewing the code and the following wiki for vers https://github.com/gsscoder/commandline/wiki/Latest-Version and I cannot see how they line up. Ex - the following will not compile ``` var result...
I've used this library quite a bit, and have always liked it. I stopped in to see how things are going, to find a lot of issues and outstanding pull...
Hi, Is there a stable v2 release? It looks to me that the last stable release was 1.9.71 (2013?) and 2.1.1-beta was published on NuGet Nov last year. Thanks
I have 2 verbs `upgrade` and `validate`, upgrade has 2 options `v` and `c`, the validate has 1 option `f`. If I use them separately it all works, if I...
If defined a `TimeSpan?` property in my options and passed it as "00:30" from the commandline but it failed with "bad format". Is this not supported?
Hi, I have an enum called LoggingLevel ``` public enum LoggingLevel { ALL, DEBUG, INFO, WARN, ERROR, FATAL, OFF } ``` which gets mapped to an option which is a...