EasyCommands 1.2.5.2

dotnet add package EasyCommands --version 1.2.5.2
NuGet\Install-Package EasyCommands -Version 1.2.5.2
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.5.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add EasyCommands --version 1.2.5.2
#r "nuget: EasyCommands, 1.2.5.2"
#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.5.2

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

Easy Commands

Easy Commands is a C# library that lets you easily write a command-line UI. This is particularly useful for use cases such as modded game servers; chat bots on Discord, Twitch, etc.; and any other place where you'd want to convert a text command to an action. This project is also extendable enough to allow custom permission systems, custom command arguments, and anything else you'd want to use.

To install, simply go to Visual Studio's Package Manager Console and type Install-Package EasyCommands.

To specify a command, all you have to do is implement the abstract CommandHandler class and write out your command callbacks with this syntax:

[Command("add")]
// You can call this with `add 1 2`
public void Add(int num1, int num2)
{
    Console.WriteLine($"{num1} + {num2} = {num1 + num2}");
}

// You can parse any object type you want, as long as you define the behavior for it.
// You can call this with `permission-level John`
// Or with quotes, `permission-level "Betty Sue"`
[Command("permission-level")]
public void GetPermissionLevel(User user)
{
    Console.WriteLine($"{user.Name} has the permission level of {user.PermissionLevel}.");
}

Essentially, the arguments of your method specify the arguments of the command. It also supports optional parameters, subcommands, and much more. To read more about usage, visit the documentation. The Example project also demonstrates all of this library's functionality.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in 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 161 7/22/2023
1.2.5.1 484 12/26/2022
1.2.5 389 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

Add PreCheckAfterArgumentParsing hook to CommandHandler