Commands.NET.Hosting 1.0.0-alpha9

This is a prerelease version of Commands.NET.Hosting.
dotnet add package Commands.NET.Hosting --version 1.0.0-alpha9                
NuGet\Install-Package Commands.NET.Hosting -Version 1.0.0-alpha9                
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.Hosting" Version="1.0.0-alpha9" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Commands.NET.Hosting --version 1.0.0-alpha9                
#r "nuget: Commands.NET.Hosting, 1.0.0-alpha9"                
#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 Commands.NET.Hosting as a Cake Addin
#addin nuget:?package=Commands.NET.Hosting&version=1.0.0-alpha9&prerelease

// Install Commands.NET.Hosting as a Cake Tool
#tool nuget:?package=Commands.NET.Hosting&version=1.0.0-alpha9&prerelease                

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("hello")]
public string Command(string world)
{
    return "Hello, " + world;
}
...
  • 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("hello")]
public Task<string> Command(string world)
{
    return Task.FromResult("Hello, " + world + ". I can only execute when CustomPrecondition says so!");
}
...

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.Execute(..., ..., options: new CommandOptions() { Services = ... });

Additional Packages

Commands.NET functions completely without additional packages, but it certainly improves in functionality when it is extended upon by other packages. It tries to do as much as it can by itself, but it supports packages when their functionality outweigh self-written implementations.

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.

Console

For Console Applications specifically, the existing layer of functionality in Commands.NET can be expanded upon by implementing a prettifier for the console, Spectre.Console.

Commands.NET.Console ships with the previously mentioned package, but it does not necessarily expect a particular version. Therefore, it might still be worthwhile to install your own version if you so need to:

    <PackageReference Include="Spectre.Console" Version="" />

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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
1.0.0-alpha9 28 11/2/2024
1.0.0-alpha8 41 10/21/2024
1.0.0-alpha7 39 10/16/2024
1.0.0-alpha6 61 5/22/2024
1.0.0-alpha5 84 4/14/2024
1.0.0-alpha4 68 2/15/2024
1.0.0-alpha3 63 2/14/2024
1.0.0-alpha2 62 2/10/2024
1.0.0-alpha1 58 2/8/2024
1.0.0-alpha 68 2/6/2024