Basco 1.5.3

dotnet add package Basco --version 1.5.3
                    
NuGet\Install-Package Basco -Version 1.5.3
                    
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="Basco" Version="1.5.3" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Basco" Version="1.5.3" />
                    
Directory.Packages.props
<PackageReference Include="Basco" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Basco --version 1.5.3
                    
#r "nuget: Basco, 1.5.3"
                    
#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.
#addin nuget:?package=Basco&version=1.5.3
                    
Install Basco as a Cake Addin
#tool nuget:?package=Basco&version=1.5.3
                    
Install Basco as a Cake Tool

Very simple and easy testable (TDD) hierarchical state machine.
Only 3 simple steps needed.
1) Define triggers (enum)
2) Create states (IState)
3) Implement configurator (IBascoConfigurator)

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.5.3 293 9/11/2014
1.5.2 83 9/11/2014
1.5.1 76 9/11/2014
1.4.0 163 8/25/2014
1.3.1 92 8/21/2014
1.3.0 204 8/14/2014
1.2.1 202 7/4/2014
1.2.0 82 7/3/2014
1.1.2 176 6/27/2014
1.1.1 102 6/20/2014
1.1.0 175 6/5/2014
1.0.4 85 5/23/2014
1.0.3 72 5/22/2014
1.0.2 114 5/8/2014

V1.5.3 - Logging whole hierarchy
V1.5.2 - Basic logging infrastructure
V1.4.0 - Option to start always in initial state for composite states
V1.3.1 - Bugfix propagating triggers
V1.3.0 - Supporting composite states (Hierarchical State Machine)
V1.2.1 - Proper dequeuing
V1.2.0 - Interface cleanup. Factory for non-dependency injection users.
V1.1.2 - Async handling by Scyano.
V1.1.1 - Made library portable. Removed all dependencies.