@@ -22,25 +22,21 @@ C:\Project> paket install CommandLineParser
22
22
23
23
__ This library provides _ hassle free_ command line parsing with a constantly updated API since 2005.__
24
24
25
- Compatibility:
26
- - .NET Framework 4.0+
27
- - Mono 2.1+ Profile
28
- - .Net Core
29
-
30
25
# At a glance:
31
26
27
+ - Compatible with __ .NET Framework 4.0+__ , __ Mono 2.1+ Profile__ , and __ .Net Core__
32
28
- Doesn't depend on other packages (No dependencies beyond standard base libraries)
33
29
- One line parsing using default singleton: ` CommandLine.Parser.Default.ParseArguments(...) ` .
34
30
- Automatic or one line help screen generator: ` HelpText.AutoBuild(...) ` .
35
31
- Supports ` --help ` , ` --version ` , ` version ` and ` help [verb] ` by default.
36
- - Map to sequences (` IEnumerable<T> ` ) or scalar types, including enum and ` Nullable<T> ` .
32
+ - Map to sequences (via ` IEnumerable<T> ` and similar) and scalar types, including Enums and ` Nullable<T> ` .
37
33
- You can also map to every type with a constructor that accepts a string (like ` System.Uri ` ).
38
34
- __ Plug-In friendly__ architecture as explained [ here] ( https://github.com/gsscoder/commandline/wiki/Plug-in-Friendly-Architecture ) .
39
- - Define [ verb commands] ( https://github.com/gsscoder/commandline/wiki/Latest-Version#verbs ) as ` git commit -a ` .
35
+ - Define [ verb commands] ( https://github.com/gsscoder/commandline/wiki/Latest-Version#verbs ) similar to ` git commit -a ` .
40
36
- Unparsing support: ` CommandLine.Parser.Default.FormatCommandLine<T>(T options) ` .
41
37
- F#-friendly with support for ` option<'a> ` , see [ demo] ( https://github.com/gsscoder/commandline/blob/master/demo/fsharp-demo.fsx ) .
42
38
- Most of features applies with a [ CoC] ( http://en.wikipedia.org/wiki/Convention_over_configuration ) philosophy.
43
- - C# demo: source [ here] ( https://github.com/gsscoder /commandline/tree/master/demo/ReadText.Demo ) .
39
+ - C# demo: source [ here] ( https://github.com/commandlineparser /commandline/tree/master/demo/ReadText.Demo ) .
44
40
45
41
Used by several open source projects and by various commercial products: See the [ wiki for listing] ( https://github.com/gsscoder/commandline/Used_By )
46
42
0 commit comments