ConsoleToolkit 1.3.1
See the version list below for details.
dotnet add package ConsoleToolkit --version 1.3.1
NuGet\Install-Package ConsoleToolkit -Version 1.3.1
<PackageReference Include="ConsoleToolkit" Version="1.3.1" />
paket add ConsoleToolkit --version 1.3.1
#r "nuget: ConsoleToolkit, 1.3.1"
// Install ConsoleToolkit as a Cake Addin #addin nuget:?package=ConsoleToolkit&version=1.3.1 // Install ConsoleToolkit as a Cake Tool #tool nuget:?package=ConsoleToolkit&version=1.3.1
A library providing the messy bits of console applications.
This package provides a framework for building console applications, improved handling of input and output to the console, and a rich command line parsing infrastructure.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net40 is compatible. net403 was computed. net45 was computed. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.0.0 | 13,676 | 8/26/2018 |
1.4.1 | 1,975 | 2/8/2018 |
1.4.0-beta3 | 1,099 | 12/31/2017 |
1.4.0-beta2 | 924 | 11/23/2017 |
1.4.0-beta1 | 1,115 | 11/19/2017 |
1.3.4 | 1,318 | 11/8/2017 |
1.3.3 | 1,296 | 11/3/2017 |
1.3.2 | 1,290 | 10/29/2017 |
1.3.1 | 1,194 | 9/23/2017 |
1.3.0-beta3 | 1,126 | 9/5/2017 |
1.3.0-beta2 | 1,061 | 8/20/2017 |
1.3.0-beta | 926 | 8/20/2017 |
1.2.0 | 1,545 | 12/11/2016 |
1.2.0-beta3 | 1,041 | 12/10/2016 |
1.2.0-beta2 | 1,036 | 12/5/2016 |
1.2.0-beta | 1,039 | 12/2/2016 |
1.1.0 | 1,419 | 6/27/2016 |
1.0.1 | 1,705 | 7/9/2015 |
1.0.0.27 | 1,537 | 7/4/2015 |
1.0.0.26 | 1,515 | 6/19/2015 |
1.0.0.25 | 1,548 | 5/12/2015 |
Support for command keywords. This allows groups of commands to be specified e.g. "user add", "user block", "user delete". Here, "user" is the keyword and is associated with "add", "block" and "delete". Conversely, it could be specified as "add user", "block user" and "delete user", in which the keywords are "add", "block" and "delete" and each is associated with a separate command i.e. 3 commands have the name "add" with a different keyword. In addition to this new feature, a bug has been fixed which caused optional repeating positionals to get the default value in addition to the actual values specified.