Commands.NET.Hosting
1.0.0-alpha6
See the version list below for details.
dotnet add package Commands.NET.Hosting --version 1.0.0-alpha6
NuGet\Install-Package Commands.NET.Hosting -Version 1.0.0-alpha6
<PackageReference Include="Commands.NET.Hosting" Version="1.0.0-alpha6" />
paket add Commands.NET.Hosting --version 1.0.0-alpha6
#r "nuget: Commands.NET.Hosting, 1.0.0-alpha6"
// Install Commands.NET.Hosting as a Cake Addin #addin nuget:?package=Commands.NET.Hosting&version=1.0.0-alpha6&prerelease // Install Commands.NET.Hosting as a Cake Tool #tool nuget:?package=Commands.NET.Hosting&version=1.0.0-alpha6&prerelease
Commands.NET
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 defaultint.TryParse
implementation, and will do the same for theDateTime
.
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.
- Commands.Samples.Console
- Shows how to implement Commands.NET on a basic console application.
- Commands.Samples.Hosting
- Shows how to implement Commands.NET on a hosted console application.
Product | Versions 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. |
-
net6.0
- Commands.NET (>= 1.0.0-alpha6)
- Microsoft.Extensions.Hosting.Abstractions (>= 8.0.0)
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 |