commandline
commandline copied to clipboard
The best C# command line parser that brings standardized *nix getopt style, for .NET. Includes F# support
**Describe the bug** `VerbAttribute`'s constructor signature has changed between 2.8.0 and 2.9.1. There is a default value for the new alias parameter, so recompilation of the same source code is...
**Describe the bug** Read string option with backslash \ and " results in reading " in the string. **To Reproduce** ``` public class Options { [Option('P', "path", Required = true,...
code: ```c# static void Main(string[] args) { args = new[] { "--y-up-to-z-up", "false", "E:\\0.obj", "E:\\DeskTop\\output1", }; var result=Parser.Default.ParseArguments(args); result.Value.Dump(); } public class Options { [Value(0, MetaName = "Input", Required =...
Change "Command Line Grammar" wiki page to be more descriptive about the default behaviour of a "switch option". I would suggest changing line 77 from: `// CheckIn = true by...
I was trying to add **CommandLineParser** to a _asp.net core_ project of mine to conditionally apply seed and test data on runs. If I run any sort of tool on...
Hello, I would like to ask you, whether there can be considered having some verbs with similar or even same options? That is, when the option classes have some relations...
**Issue by [Steve887](https://github.com/Steve887)** _Wednesday Jan 20, 2016 at 01:30 GMT_ _Originally opened as https://github.com/gsscoder/commandline/issues/281_ ---- I'm trying to print the help text for my options without having to force a...
We have the following options definition: [Option('1', "readlog1", HelpText = "Reads log entries from the Log 1 memory.")] public bool ReadLog1 { get; set; } [Option('2', "readlog2", HelpText = "Reads...
**Describe the bug** I have two parameter sets. One has only one option, bool list, works fine: `mytool new --list # works fine` The other set works fine, while it...
Hi, Is it possible to use CommandLineParser with **noun** and **verb** syntax? I would like to setup a command line tool, which supports different **nouns** (in CommandLineParser terminology, this would...