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.
<PackageVersion Include="EasyCommands" Version="1.2.0" />
                    
Directory.Packages.props
<PackageReference Include="EasyCommands" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version 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.
#:package EasyCommands@1.2.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=EasyCommands&version=1.2.0
                    
Install as a Cake Addin
#tool nuget:?package=EasyCommands&version=1.2.0
                    
Install as a Cake Tool

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 903 7/22/2023
1.2.5.1 797 12/26/2022
1.2.5 573 12/26/2022
1.2.4 1,073 2/27/2022
1.2.3 847 12/14/2020
1.2.2 709 12/13/2020
1.2.1 858 5/24/2020
1.2.0 707 5/24/2020
1.1.3 980 5/22/2019
1.1.2 755 5/22/2019
1.1.1 910 5/21/2019
1.1.0 768 5/21/2019
1.0.0 914 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