CommandManagementSystem 3.0.0-alpha2
See the version list below for details.
dotnet add package CommandManagementSystem --version 3.0.0-alpha2
NuGet\Install-Package CommandManagementSystem -Version 3.0.0-alpha2
<PackageReference Include="CommandManagementSystem" Version="3.0.0-alpha2" />
paket add CommandManagementSystem --version 3.0.0-alpha2
#r "nuget: CommandManagementSystem, 3.0.0-alpha2"
// Install CommandManagementSystem as a Cake Addin #addin nuget:?package=CommandManagementSystem&version=3.0.0-alpha2&prerelease // Install CommandManagementSystem as a Cake Tool #tool nuget:?package=CommandManagementSystem&version=3.0.0-alpha2&prerelease
This is a nightly build that is actively under development. It should not be used for production systems. More detailed information can be found on GitHub.
New Features
- Implement Alias function: The alias functionality is finally implemented. CommandAttributes can now get additional tags as aliases that can be used instead of the normal tags.
Changes
- Add Generics to DefaultManager: The Default Manager now has overloads with generics so it can be configured individually.
- Add list of Command tags: A CommandManager can now return a list of the executable commands and their aliases.
BugFixes
- Invalid Cast Exception: When using the DefaultCommandManager it could happen that a Dispatch led to a Cast Exception. The error has been fixed.
- DefaultManager does not find any commands: The DefaultManager could not find any assembly commands. In this version the DefaultManager now searches for the namespaces in the current app domain.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net45 is compatible. net451 was computed. net452 was computed. net46 is compatible. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on CommandManagementSystem:
Repository | Stars |
---|---|
OctoAwesome/octoawesome
This is the code repository for the OctoAwesome project - a collection of daily, 20 minute long game development tutorial videos, iterating over the same piece of code
|
Version | Downloads | Last updated |
---|---|---|
3.0.0-alpha3 | 825 | 2/28/2019 |
3.0.0-alpha2 | 1,113 | 3/30/2018 |
3.0.0-alpha1 | 1,016 | 2/14/2018 |
2.0.0 | 1,156 | 7/7/2017 |
2.0.0-beta | 818 | 6/3/2017 |
2.0.0-alpha3 | 785 | 6/3/2017 |
2.0.0-alpha2 | 793 | 5/29/2017 |
2.0.0-alpha1 | 796 | 5/24/2017 |
1.0.1 | 1,027 | 1/6/2017 |
1.0.0 | 1,098 | 1/5/2017 |
This is a nightly build that is actively under development. It should not be used for production systems. More detailed information can be found on GitHub. New Features: * Implement Alias function
* Add Generics to DefaultManager
* Add list of Command tags
* Fix some bugs