You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[](https://gitter.im/gsscoder/commandline?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[](https://gitter.im/gsscoder/commandline?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
6
6
7
7
# Command Line Parser Library for CLR and NetStandard
8
8
@@ -11,7 +11,7 @@
11
11
The Command Line Parser Library offers CLR applications a clean and concise API for manipulating command line arguments and related tasks, such as defining switches, options and verb commands. It allows you to display a help screen with a high degree of customization and a simple way to report syntax errors to the end user.
12
12
13
13
```
14
-
C:\Project> Nuget Install CommandLineParser
14
+
C:\Project> NuGet Install CommandLineParser
15
15
```
16
16
17
17
_NOTE: Mentioned F# Support is provided via ```CommandLineParser.FSharp``` package with FSharp dependencies._
@@ -20,7 +20,7 @@ __This library provides _hassle free_ command line parsing with a constantly upd
20
20
21
21
# At a glance:
22
22
23
-
- Compatible with __.NET Framework 4.0+__, __Mono 2.1+ Profile__, and __.Net Core__
23
+
- Compatible with __.NET Framework 4.0+__, __Mono 2.1+ Profile__, and __.NET Core__
24
24
- Doesn't depend on other packages (No dependencies beyond standard base libraries)
25
25
- One line parsing using default singleton: `CommandLine.Parser.Default.ParseArguments(...)`.
26
26
- Automatic or one line help screen generator: `HelpText.AutoBuild(...)`.
@@ -29,15 +29,15 @@ __This library provides _hassle free_ command line parsing with a constantly upd
29
29
- You can also map to every type with a constructor that accepts a string (like `System.Uri`).
30
30
- Define [verb commands](https://github.com/commandlineparser/commandline/wiki#verbs) similar to `git commit -a`.
- CommandLineParser.FSharp package is F#-friendly with support for `option<'a>`, see [demo](https://github.com/commandlineparser/commandline/blob/master/demo/fsharp-demo.fsx). _NOTE: This is a separate Nuget package._
32
+
- CommandLineParser.FSharp package is F#-friendly with support for `option<'a>`, see [demo](https://github.com/commandlineparser/commandline/blob/master/demo/fsharp-demo.fsx). _NOTE: This is a separate NuGet package._
33
33
- Most of features applies with a [CoC](http://en.wikipedia.org/wiki/Convention_over_configuration) philosophy.
0 commit comments