@@ -22,25 +22,21 @@ C:\Project> paket install CommandLineParser
2222
2323__ This library provides _ hassle free_ command line parsing with a constantly updated API since 2005.__
2424
25- Compatibility:
26- - .NET Framework 4.0+
27- - Mono 2.1+ Profile
28- - .Net Core
29-
3025# At a glance:
3126
27+ - Compatible with __ .NET Framework 4.0+__ , __ Mono 2.1+ Profile__ , and __ .Net Core__
3228- Doesn't depend on other packages (No dependencies beyond standard base libraries)
3329- One line parsing using default singleton: ` CommandLine.Parser.Default.ParseArguments(...) ` .
3430- Automatic or one line help screen generator: ` HelpText.AutoBuild(...) ` .
3531- 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> ` .
3733- You can also map to every type with a constructor that accepts a string (like ` System.Uri ` ).
3834- __ 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 ` .
4036- Unparsing support: ` CommandLine.Parser.Default.FormatCommandLine<T>(T options) ` .
4137- F#-friendly with support for ` option<'a> ` , see [ demo] ( https://github.com/gsscoder/commandline/blob/master/demo/fsharp-demo.fsx ) .
4238- 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 ) .
4440
4541Used by several open source projects and by various commercial products: See the [ wiki for listing] ( https://github.com/gsscoder/commandline/Used_By )
4642
0 commit comments