Skip to content
This repository was archived by the owner on Jul 11, 2018. It is now read-only.

Commit e0d0505

Browse files
committed
Merge pull request #11 from timabell/master
Some improvements to the main readme
2 parents 9738711 + 4b6606a commit e0d0505

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

README.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,21 @@
11
[![Build status](https://ci.appveyor.com/api/projects/status/45x7s2101mpfjmhp/branch/master)](https://ci.appveyor.com/project/cosmo0/commandline/branch/master)
22

3-
Command Line Parser Library 2.0 pre-release
3+
Command Line Parser Library
44
===
55

66
The Command Line Parser Library offers to CLR applications a clean and concise API for manipulating command line arguments and related tasks defining switches, options and verb commands.
77
It allows you to display an help screen with an high degree of customization and a simple way to report syntax errors to the end user. Everything that is boring and repetitive to be programmed stands up on library shoulders, letting developers concentrate on core logic.
88
__This library provides _hassle free_ command line parsing with a constantly updated API since 2005.__
99

10+
There are two versions available via nuget, the current 2.0 branch that tracks master, and a maintenance branch of 1.9 to provide bugfixes for anyone using the older api.
11+
12+
- 2.0
13+
- nuget package: https://www.nuget.org/packages/CommandLineParser20
14+
- branch: master
15+
- 1.9
16+
- nuget package: https://www.nuget.org/packages/CommandLineParser19
17+
- branch: stable-1.9
18+
1019
Project status and future
1120
---
1221
This fork contains the latest pull requests from the original project (since the original developer seems to have vanished).
@@ -21,11 +30,11 @@ Compatibility:
2130

2231
Current Release:
2332
---
24-
- This is a __pre-release__, for documentation please read the appropriate [wiki section](https://github.com/cosmo0/commandline/wiki/Latest-Beta).
33+
- For documentation please read the appropriate [wiki section](https://github.com/cosmo0/commandline/wiki/Latest-Beta).
2534

2635
At a glance:
2736
---
28-
- One line parsing using default singleton: ``CommandLine.Parser.Default.ParseArguments(...)``.
37+
- One line parsing using default singleton: ``CommandLine.Parser.Default.ParseArguments<Options>(args)``.
2938
- One line help screen generator: ``HelpText.AutoBuild(...)``.
3039
- Map command line arguments to sequences (``IEnumerable<T>``), enum or standard scalar types.
3140
- __Plug-In friendly__ architecture as explained [here](https://github.com/cosmo0/commandline/wiki/Plug-in-Friendly-Architecture).

0 commit comments

Comments
 (0)