Skip to content

Commit 09e3a85

Browse files
Updated the README.MD to include a warning that the current NuGet package is outdated.
1 parent 9da08ed commit 09e3a85

File tree

2 files changed

+18
-6
lines changed

2 files changed

+18
-6
lines changed

.vscode/settings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
"cSpell.words": [
1313
"Neumann",
1414
"Xunit",
15+
"paket",
1516
"vvvcccaaa"
1617
]
1718
}

README.md

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,21 @@ from the command line via well-defined .NET data structures.
77

88
## Using the Project
99

10-
If you want to you can download and manually build the solution. The project was built using Visual Studio
11-
Code and .NET Core 2.0. To build the solution, clone the repository and build it using the command line
12-
tools of .NET Core:
10+
You can always get the latest stable version from NuGet:
11+
12+
```bash
13+
Install-Package System.CommandLine.Parser -Version 0.1.1 # Using the Visual Studio Package Manager
14+
dotnet add package System.CommandLine.Parser --version 0.1.1 # Using the .NET Command Line Interface
15+
paket add System.CommandLine.Parser --version 0.1.1 # Using the packet Command Line Interface
16+
```
17+
18+
**__But please be aware that the current 0.1.1 version on NuGet is outdated and should only be used for
19+
legacy projects. The next release is a complete rewrite of the original code for .NET Core and will work
20+
on all supported .NET Core platforms (e.g. Windows, macOS, and Linux).__**
21+
22+
If you want to go ahead and use the new version, you can download and manually build the solution. The
23+
project was built using Visual Studio Code and .NET Core 2.0. To build the solution, clone the repository
24+
and build it using the command line tools of .NET Core:
1325

1426
```bash
1527
git clone https://github.com/lecode-official/command-line-parser
@@ -20,6 +32,5 @@ dotnet test ./test/System.CommandLine.Parser.Tests/System.CommandLine.Parser.Tes
2032

2133
## Contributions
2234

23-
Currently I am not accepting any contributors, but if you want to help, I would greatly appreciate feedback
24-
and bug reports. To file a bug, please use GitHub's issue system. Alternatively, you can clone the repository
25-
and send me a pull request.
35+
I always greatly appreciate feedback and bug reports. To file a bug, please use GitHub's issue system.
36+
Alternatively, you can clone the repository and send me a pull request.

0 commit comments

Comments
 (0)