Appccelerate.StateMachine 5.1.0

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

// Install Appccelerate.StateMachine as a Cake Tool
#tool nuget:?package=Appccelerate.StateMachine&version=5.1.0

Hierarchical state machine with fluent definition syntax
     Features:
     states and events can be defined with enums, strings or ints - resulting in single class state machines,
     actions on transitions, entry and exit actions, transition guards,
     hierarchical with different history behaviors to initialize state always to same state or last active state,
     fluent definition interface,
     synchronous/asynchronous state machine (passive state machine handles state transitions synchronously, active state machine handles state transitions asynchronously on the worker thread of the state machine),
     extensible thorough logging,
     state machine report for description of state machine (csv, yEd)

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 netcoreapp1.0 was computed.  netcoreapp1.1 was computed.  netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard1.3 is compatible.  netstandard1.4 was computed.  netstandard1.5 was computed.  netstandard1.6 was computed.  netstandard2.0 was computed.  netstandard2.1 was computed. 
.NET Framework net46 was computed.  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 tizen30 was computed.  tizen40 was computed.  tizen60 was computed. 
Universal Windows Platform uap was computed.  uap10.0 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.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on Appccelerate.StateMachine:

Package Downloads
JetBrains.Psi.Features.UnitTesting The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

JetBrains Psi Features UnitTesting Package Version 231.0.20240313.114247

Weingartner.Wpf.Animation

WPF animation control. Features: * Play, Pause, Forward, Backward buttons * Speed slider * Sticky positions

Dilan.GrpcServiceDiscovery.Grpc

Easy to use Service discovery pattern provider based on Grpc and side car client.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
5.1.0 375,128 11/27/2019
5.0.0-pre0003 3,731 12/22/2017
4.5.0-pre0000 2,631 12/1/2017
4.4.0 202,088 7/7/2017
4.0.0 4,488 6/23/2017
3.3.0 531,152 6/2/2017
3.2.0 2,116 5/24/2017
2.12.0 43,980 1/14/2015
2.7.0 3,695 10/6/2014
2.1.0 6,032 1/20/2014
1.0.84 5,872 5/31/2013
1.0.83 2,434 5/31/2013
1.0.44 5,110 10/28/2012
1.0.29 6,574 6/15/2012
1.0.25-alpha 2,144 6/12/2012
1.0.24-alpha 2,223 4/5/2012
1.0.21-alpha 2,151 3/21/2012

5.1.0:
     - completely redesigned the state machine definition API.
       You can now define a state machine definition and then spawn state machine instances from the definition.
       This speeds up creation of state machines from a static definition for example in ASP.NET requests.
       The initial state is set at definition time (on the definition) and not on the state machine anymore.
       The interfaces of the extensions had to be changed, too.
       For details see https://github.com/appccelerate/statemachine/pull/51, https://github.com/appccelerate/statemachine/pull/52 and https://github.com/appccelerate/statemachine/pull/53
     - Loading and saving the state machinbe now includes the queued events. The whole internal state holding was redesigned to be in a single place. Details see https://github.com/appccelerate/statemachine/pull/53
     - fixed that Fire on AsyncActiveStateMachine could not complete on blocking ExecuteOnEntry. Details see https://github.com/appccelerate/statemachine/pull/49
     - changed release pipeline of Appccelerate.StateMachine and lots of internal stuff

     4.4.0:
     - back to .net standard 1.0
     - fixed nuget package containing wrong assembly

     4.0.0:
     - adds AsyncPassiveStateMachine that supports async/await for transition actions, entry/exit actions, guards and save/load.
     - targets .net standard 1.3 to support async/await

     3.3.0:
     - fixed: wrong target framework was specified in nuget package. Now targets .net standard 1.0

     3.2.0:
     - targets now .net standard 1.0 so you can use the state machine almost anywhere .net exists
     - fixed a bug when passing a 'null' argument to the state machine