CommandManagementSystem 3.0.0-alpha3

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

// Install CommandManagementSystem as a Cake Tool
#tool nuget:?package=CommandManagementSystem&version=3.0.0-alpha3&prerelease

Command Management System

Current Version: 3.0.0-alpha3

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 StringCommands: You can now use the StringCommandManager and the StringCommands. With a String Command the type or method name is used automaticly as tag.

Current Version: 3.0.0-alpha2

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.

Current Version: 3.0.0-alpha1

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

  • Reinstaning Complex Commands: Complex commands are recreated after they are finished with the next dispatch. This behavior can be controlled by a Reinstance property of the CommandAttribute.
  • .NET Standard 2.0 support: The new version is available in three versions:. NET 4.5,. NET 4.6 and. NET Standard 2.0

Known issues

  • Aliases are ignored: The alias function has no functionality

Changes

  • CommandManager.Command_FinishEvent: This function is obsolete, please use instead CommandFinishEvent
  • CommandManager.Command_WaitEvent: This function is obsolete, please use instead CommandWaitEvent
Product 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. 
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

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 794 2/28/2019
3.0.0-alpha2 1,085 3/30/2018
3.0.0-alpha1 994 2/14/2018
2.0.0 1,102 7/7/2017
2.0.0-beta 797 6/3/2017
2.0.0-alpha3 766 6/3/2017
2.0.0-alpha2 773 5/29/2017
2.0.0-alpha1 771 5/24/2017
1.0.1 1,000 1/6/2017
1.0.0 1,073 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:
* You can now use the StringCommandManager and the StringCommands. With a String Command the type or method name is used automaticly as tag.