Skip to content

Commit 286b724

Browse files
authored
Merge pull request #235 from commandlineparser/nemec-patch-1
Fix links in readme
2 parents 451be76 + f1caf3e commit 286b724

File tree

1 file changed

+4
-19
lines changed

1 file changed

+4
-19
lines changed

README.md

Lines changed: 4 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,12 @@ __This library provides _hassle free_ command line parsing with a constantly upd
2727
- Supports `--help`, `--version`, `version` and `help [verb]` by default.
2828
- Map to sequences (via `IEnumerable<T>` and similar) and scalar types, including Enums and `Nullable<T>`.
2929
- You can also map to every type with a constructor that accepts a string (like `System.Uri`).
30-
- __Plug-In friendly__ architecture as explained [here](https://github.com/gsscoder/commandline/wiki/Plug-in-Friendly-Architecture).
31-
- Define [verb commands](https://github.com/gsscoder/commandline/wiki/Latest-Version#verbs) similar to `git commit -a`.
30+
- Define [verb commands](https://github.com/commandlineparser/commandline/wiki#verbs) similar to `git commit -a`.
3231
- Unparsing support: `CommandLine.Parser.Default.FormatCommandLine<T>(T options)`.
33-
- CommandLineParser.FSharp package is F#-friendly with support for `option<'a>`, see [demo](https://github.com/gsscoder/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._
3433
- Most of features applies with a [CoC](http://en.wikipedia.org/wiki/Convention_over_configuration) philosophy.
3534
- C# demo: source [here](https://github.com/commandlineparser/commandline/tree/master/demo/ReadText.Demo).
3635

37-
Used by several open source projects and by various commercial products: See the [wiki for listing](https://github.com/gsscoder/commandline/Used_By)
38-
3936
# Getting Started with the Command Line Parser Library
4037

4138
You can utilize the parser library in several ways:
@@ -44,8 +41,6 @@ You can utilize the parser library in several ways:
4441
- Integrate directly into your project by copying the .cs files into your project.
4542
- ILMerge during your build process.
4643

47-
See more details in the [wiki for direct integrations](https://github.com/gsscoder/commandline/wiki/Direct_Integrations)
48-
4944
## Quick Start Examples
5045

5146
1. Create a class to define valid options, and to receive the parsed options.
@@ -209,14 +204,6 @@ let main args =
209204
| :? CommandLine.NotParsed<obj> -> 1
210205
```
211206

212-
For additional examples, check the [wiki for additional examples](https://gsscoder/commandline/wiki/Examples)
213-
214-
Acknowledgements:
215-
---
216-
[![Jet Brains ReSharper](/art/resharper-logo.png)](http://www.jetbrains.com/resharper/)
217-
218-
Thanks to JetBrains for providing an open source license for [ReSharper](http://www.jetbrains.com/resharper/).
219-
220207
# Contibutors
221208
First off, _Thank you!_ All contributions are welcome.
222209

@@ -226,19 +213,17 @@ Additionally, for easiest diff compares, please follow the project's tabs settin
226213

227214
__And most importantly, please target the ```develop``` branch in your pull requests!__
228215

229-
For more info, see the [wiki for details about contributing](https://github.com/gsscoder/commandline/wiki/Building_the_library) and for building the project.
230-
231216
## Main Contributors (alphabetical order):
232217
- Alexander Fast (@mizipzor)
233218
- Dan Nemec (@nemec)
219+
- Eric Newton (@ericnewton76)
234220
- Kevin Moore (@gimmemoore)
235221
- Steven Evans
236222
- Thomas Démoulins (@Thilas)
237223

238224
## Resources for newcomers:
239225

240-
- [Quickstart](https://github.com/gsscoder/commandline/wiki/Quickstart)
241-
- [Wiki](https://github.com/gsscoder/commandline/wiki)
226+
- [Wiki](https://github.com/commandlineparser/commandline/wiki)
242227
- [GNU getopt](http://www.gnu.org/software/libc/manual/html_node/Getopt.html)
243228

244229
# Contacts:

0 commit comments

Comments
 (0)