EasyCommands 1.2.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package EasyCommands --version 1.2.0
NuGet\Install-Package EasyCommands -Version 1.2.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="EasyCommands" Version="1.2.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add EasyCommands --version 1.2.0
#r "nuget: EasyCommands, 1.2.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install EasyCommands as a Cake Addin
#addin nuget:?package=EasyCommands&version=1.2.0

// Install EasyCommands as a Cake Tool
#tool nuget:?package=EasyCommands&version=1.2.0

Reflection-based command line parsing for C#

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on EasyCommands:

Package Downloads
EasyCommandsTShock

Simplifies writing commands for TShock plugins

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.2.5.2 167 7/22/2023
1.2.5.1 486 12/26/2022
1.2.5 391 12/26/2022
1.2.4 850 2/27/2022
1.2.3 562 12/14/2020
1.2.2 461 12/13/2020
1.2.1 599 5/24/2020
1.2.0 487 5/24/2020
1.1.3 722 5/22/2019
1.1.2 532 5/22/2019
1.1.1 662 5/21/2019
1.1.0 548 5/21/2019
1.0.0 655 5/16/2019

- Added support for default no-argument subocommands
     - Added support for asynchronous command methods
     - Exception messages are no longer visible to users when an unhandled exception occurs in a command method. Added a method in CommandHandler to specify how to handle the exception.
     - Fixed access controls for subcommands
     - Upgraded to .NET version 4.7.2
     - Added AddFlagRules method to register all flag arguments in a namespace
     - You can now specify the command name validation regex
     - Added the SyntaxOverride command attribute