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

Is there any support for some sort of "default" verb? That is, a verb that gets executed when no verb is actually specified. Perhaps an existing verb can be marked...

This would be a nice feature to have (configurable in `HelpText` perhaps) as an addition to the long `--help` option.

@gsscoder Given: ``` class Options { [Value(0, Required = true)] public string Text { get; set; } [Option("option", Required = true)] public string Option { get; set; } } ```...

bug

Define a string option: ``` [Option('e', "engineering", SetName = "console", Required = false, HelpText = "Flag whether the build is engineering build", ")] public string Engineering { get; set; }...

I apologize for not being able to coordinate issues, pull requests and for not replying to all emails. I was very engaged in various heavy and challenging projects around Europe....

announcement

I'm using CommandLine version 1.9.71.2 If i specify an `AssemblyTitleAttribute` with a dotted name (and I version my tool 1.10.1.\* through the AssemblyVersionAttribute) in the project's AssemblyInfo.cs file, e.g. ```...

requires-deepening

Using the verbs I noticed that the verb commmand fails with a System.ArgumentNullException if the long name for an option is not set. If you set the long name everything...

This is regarding 2.0 1) Is it possible to suppress displaying version/copyright stuff (I can display them myself, thank you very much) but retain the rest? 2) If I remove...

question
postponed-after-issue-250-close_temp-label

I just tried the library and I like it except that I cannot edit the help screen at all and that includes the preceeding heading like FooBar 1.0.0.0 Copyright c...

Is it possible to have more control over how the usage is presented? For example: ``` D:\My Programs\2017\OutlookCalIFConsole\OutlookCalIFConsole\bin\Release>outlookcalifconsole -p OutlookCalIFConsole 1.0.0.0 Copyright c 2017 -l, --list Builds a list of...