Skip to content

Commit 8816fe7

Browse files
authored
Merge pull request #352 from danielchalmers/patch-2
fix capitalisation in brand names
2 parents 7ac7a3c + 4ecd364 commit 8816fe7

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[![Build status](https://img.shields.io/appveyor/ci/commandlineparser/commandline.svg)](https://ci.appveyor.com/project/commandlineparser/commandline)
2-
[![Nuget](https://img.shields.io/nuget/dt/commandlineparser.svg)](http://nuget.org/packages/commandlineparser)
3-
[![Nuget](https://img.shields.io/nuget/v/commandlineparser.svg)](http://nuget.org/packages/commandlineparser)
4-
[![Nuget](https://img.shields.io/nuget/vpre/commandlineparser.svg)](http://nuget.org/packages/commandlineparser)
5-
[![Join the gitter chat!](https://badges.gitter.im/gsscoder/commandline.svg)](https://gitter.im/gsscoder/commandline?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
2+
[![NuGet](https://img.shields.io/nuget/dt/commandlineparser.svg)](http://nuget.org/packages/commandlineparser)
3+
[![NuGet](https://img.shields.io/nuget/v/commandlineparser.svg)](http://nuget.org/packages/commandlineparser)
4+
[![NuGet](https://img.shields.io/nuget/vpre/commandlineparser.svg)](http://nuget.org/packages/commandlineparser)
5+
[![Join the Gitter chat!](https://badges.gitter.im/gsscoder/commandline.svg)](https://gitter.im/gsscoder/commandline?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
66

77
# Command Line Parser Library for CLR and NetStandard
88

@@ -11,7 +11,7 @@
1111
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.
1212

1313
```
14-
C:\Project> Nuget Install CommandLineParser
14+
C:\Project> NuGet Install CommandLineParser
1515
```
1616

1717
_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
2020

2121
# At a glance:
2222

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__
2424
- Doesn't depend on other packages (No dependencies beyond standard base libraries)
2525
- One line parsing using default singleton: `CommandLine.Parser.Default.ParseArguments(...)`.
2626
- 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
2929
- You can also map to every type with a constructor that accepts a string (like `System.Uri`).
3030
- Define [verb commands](https://github.com/commandlineparser/commandline/wiki#verbs) similar to `git commit -a`.
3131
- Unparsing support: `CommandLine.Parser.Default.FormatCommandLine<T>(T options)`.
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._
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._
3333
- Most of features applies with a [CoC](http://en.wikipedia.org/wiki/Convention_over_configuration) philosophy.
3434
- C# demo: source [here](https://github.com/commandlineparser/commandline/tree/master/demo/ReadText.Demo).
3535

3636
# Getting Started with the Command Line Parser Library
3737

3838
You can utilize the parser library in several ways:
3939

40-
- Install via Nuget/Paket: [https://www.nuget.org/packages/CommandLineParser/](https://www.nuget.org/packages/CommandLineParser/)
40+
- Install via NuGet/Paket: [https://www.nuget.org/packages/CommandLineParser/](https://www.nuget.org/packages/CommandLineParser/)
4141
- Integrate directly into your project by copying the .cs files into your project.
4242
- ILMerge during your build process.
4343

@@ -131,7 +131,7 @@ let main argv =
131131
| :? NotParsed<options> as notParsed -> fail notParsed.Errors
132132
```
133133

134-
VB.Net:
134+
VB.NET:
135135

136136
```VB.NET
137137
Class Options
@@ -192,7 +192,7 @@ int Main(string[] args) {
192192
}
193193
```
194194

195-
VB.Net example:
195+
VB.NET example:
196196

197197
```VB.NET
198198
<CommandLine.Verb("add", HelpText:="Add file contents to the index.")>

0 commit comments

Comments
 (0)