Commands.NET 1.0.0-alpha6

This is a prerelease version of Commands.NET.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Commands.NET --version 1.0.0-alpha6
                    
NuGet\Install-Package Commands.NET -Version 1.0.0-alpha6
                    
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="Commands.NET" Version="1.0.0-alpha6" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Commands.NET" Version="1.0.0-alpha6" />
                    
Directory.Packages.props
<PackageReference Include="Commands.NET" />
                    
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 Commands.NET --version 1.0.0-alpha6
                    
#r "nuget: Commands.NET, 1.0.0-alpha6"
                    
#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.
#addin nuget:?package=Commands.NET&version=1.0.0-alpha6&prerelease
                    
Install Commands.NET as a Cake Addin
#tool nuget:?package=Commands.NET&version=1.0.0-alpha6&prerelease
                    
Install Commands.NET as a Cake Tool

cnetbanner_lighttrans_outline_bexp

Commands.NET

Build Status Download Discord

Commands.NET is a robust no-nonsense command library that makes creating and processing queries easy for any* interactive platform. It implements a modular, easy to implement pipeline for registering and executing commands, as well as a wide range of customization options to make development on different platforms as easy as possible.

*This includes console-input, game-chat, social platforms like Discord, Slack, Messenger & much, much more.

Features

Type Conversion

For raw input, automated conversion to fit command signature is supported by TypeConverter's. ValueType, Enum and nullable variant types are automatically parsed by the framework and populate commands as below:

...
[Command("test")]
public void Test(int param1, DateTime param2)
{
    Console.WriteLine("{0}, {1}", param1, param2);
}
...
  • This will automatically parse int by using the default int.TryParse implementation, and will do the same for the DateTime.

Outside of this, implementing and adding your own TypeConverter's is also supported to handle command signatures with normally unsupported types.

See feature documentation for more.

Preconditions

Implementing PreconditionAttribute creates a new evaluation to add in the set of attributes defined above command definitions. When a command is attempted to be executed, it will walk through every precondition present and abort execution if any of them fail.

...
[CustomPrecondition]
[Command("test")]
public async Task Test()
{
    
}
...

See feature documentation for more.

Extensive Configuration

The API focusses on customizability and configuration above all else, and this is visible in the pre-execution setup.

Registration assemblies, result handling, delegate command definitions and more can be defined in the CommandBuilder<T>:

var builder = CommandManager.CreateBuilder();

...

var manager = builder.Build()

See feature documentation for more.

Customization

While already fully functional out of the box, the framework does not shy away from covering extensive applications with more specific needs, which in turn need more than the base features to function according to its developer's expectations.

This customization is extended into:

  • ConsumerBase
  • ModuleBase
  • TypeConverterBase
  • ResultResolverBase
  • PreconditionAttribute
  • PostconditionAttribute

These types can all be inherited and custom ones created for environmental specifics, custom type conversion and more.

See feature documentation for more.

Reflection

The framework saves cached command data in its own reflection types. These types, such as CommandInfo, ArgumentInfo and ModuleInfo store informative data about a target, its root module and any submembers.

The reflection data is accessible in various ways, most commonly in scope during type conversion & precondition evaluation.

Dependency Injection

Having grown into a vital part of building effective and modern applications, Dependency Injection (DI) is an incredibly useful concept to be carried along in the equally modern Commands.NET. It integrates this feature deeply into its architecture and supports use across the whole API.

You can provide an IServiceProvider at execution to inject modules with dependencies, in accordance to the conventions Microsoft.Extensions.DependencyInjection follows.

...
manager.TryExecuteAsync(..., ..., options: new CommandOptions() { Services = ... });

Additional Packages

Commands.NET is not without its own dependencies, but it tries its best to keep all dependencies within a trusted atmosphere, using packages only when they outweigh self-written implementations. So far, it only depends on packages published by official channels of the .NET ecosystem.

Dependency Injection

For applications to function with Commands.NET, it is suggested to install DI functionality through Microsoft's publicized package(s):

    <PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="" />

This package is not required. Commands.NET is independent by default, and can function as such. This and other required packages can also be installed through the Package Manager, .NET CLI or from within your IDE.

Hosting

Carrying out further support within the .NET ecosystem, Commands.NET also introduces a hosting package for deploying apps with the .NET generic and application host.

For applications to function with Commands.NET.Hosting, it is necessary to install the hosting package that it also implements, also publicized by Microsoft itself:

    <PackageReference Include="Microsoft.Extensions.Hosting" Version="" />

The hosting extensions package publicized by Microsoft implements the packages necessary for the core component of Commands.NET, and does not expect to have its dependencies implemented alongside it.

For each of these packages, the minimum version is determined by Commands.NET itself, usually being the latest or equal to the target framework upon which it was released. It is suggested to choose the latest version at time of installation.

Getting Started

There are various resources available in order to get started with Commands.NET. Below, you can find samples and directions to the quick guide.

Quick Guide

You can find the quick guide here. This guide introduces you to the basics of defining modules, commands, and how to run them.

Samples

Samples are available to learn how to implement Commands.NET in your own programs.

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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net6.0

    • No dependencies.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Commands.NET:

Package Downloads
Commands.NET.Hosting

A package containing tooling for integrating Commands.NET with Microsoft.Extensions.*.

Commands.NET.Console

An extension for Commands.NET that specifically aims to support the console and CLI, implementing Spectre.Console for beautification.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.0.0-alpha.13 43 2 days ago
2.0.0-alpha.12 44 2 days ago
2.0.0-alpha.11 70 3 months ago
2.0.0-alpha.10 61 3 months ago
2.0.0-alpha.9 52 3 months ago
2.0.0-alpha.8 57 3 months ago
2.0.0-alpha.7 50 3 months ago
2.0.0-alpha.6 51 3 months ago
2.0.0-alpha.5 52 3 months ago
2.0.0-alpha.4 52 3 months ago
2.0.0-alpha.3 36 4 months ago
2.0.0-alpha.2 65 4 months ago
2.0.0-alpha.1 51 4 months ago
1.0.0 150 5 months ago
1.0.0-rc6 116 5 months ago
1.0.0-rc5 105 5 months ago
1.0.0-rc4 109 5 months ago
1.0.0-rc3 104 5 months ago
1.0.0-rc2 107 5 months ago
1.0.0-rc1 106 5 months ago
1.0.0-alpha9 106 6 months ago
1.0.0-alpha8 102 6 months ago
1.0.0-alpha7 251 6 months ago
1.0.0-alpha6 126 5/22/2024
1.0.0-alpha5 127 4/14/2024
1.0.0-alpha4 106 2/15/2024
1.0.0-alpha3 101 2/14/2024
1.0.0-alpha2 106 2/10/2024
1.0.0-alpha1 104 2/8/2024
1.0.0-alpha 113 2/6/2024