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

Here is an extract of my CommandLineOption class `[Option('m', "monitor", DefaultValue = 0, HelpText = "The ID of the monitor on which the the application should be shown (use 0...

-c false should turn off the switch for -c.

enhancement

Would it be possible to add some boolean option in order to display/remove the assembly info when usage is printed ?

question

I am looking for a little assistance in seeing if I can parse plus/minus (inclusion/negation) arguments with 'commandline'. i.e. Argument options like: - someexecutable -optimize+ -unsafe- - -optimize[+|-] - -unsafe[+|-]...

requires-deepening

Consider following scenario: ``` public class ScaffoldCommand { [Value(0)] public string ConnectionString { get; set; } [Value(1)] public string Provider { get; set; } } ``` ConnectionString could be a...

bug

Hi there, I'm using CommandLineParser 1.9.71 through Monodevelop 6.0.1 and Mono 4.6.2. I am trying to get one of the demos to work (also following the documentation in the Wiki)...

This module was a great module in v1 to deal with commandline options. The new version doesn't have any documentation and the examples are so complex that it's easier to...

It would be a good idea to make it possible to turn off (or at least customize) version and help options, probably via an attribute for the options class. This...

enhancement

Pass no arguments, use verbs, have no CopyrightAttribute and no AssemblyCompanyAttribute on assembly. Result is help text with duplicate errors list: ``` Tests2 1.0.0.0 Copyright (C) 1 author ERROR(S): No...

[Constructor](https://github.com/gsscoder/commandline/blob/master/src/CommandLine/Text/HeadingInfo.cs#L30): ``` public HeadingInfo(string programName, string version = null) { if (string.IsNullOrWhiteSpace("programName")) throw new ArgumentException("programName"); ``` Passing string `"programName"` instead of argument `programName` value. But HeadingInfo.Empty is creating object with...