ArtMind.AppFlow.Abstractions
5.0.0
See the version list below for details.
dotnet add package ArtMind.AppFlow.Abstractions --version 5.0.0
NuGet\Install-Package ArtMind.AppFlow.Abstractions -Version 5.0.0
<PackageReference Include="ArtMind.AppFlow.Abstractions" Version="5.0.0" />
paket add ArtMind.AppFlow.Abstractions --version 5.0.0
#r "nuget: ArtMind.AppFlow.Abstractions, 5.0.0"
// Install ArtMind.AppFlow.Abstractions as a Cake Addin #addin nuget:?package=ArtMind.AppFlow.Abstractions&version=5.0.0 // Install ArtMind.AppFlow.Abstractions as a Cake Tool #tool nuget:?package=ArtMind.AppFlow.Abstractions&version=5.0.0
AppFlow - Orchestration framework for .NET applications
It is a flow management library for .NET applications. It is easy to set up, has a fluent orchestration API, and runs on all recent .NET platforms.
Find out more
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. 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 | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
.NET Framework | net48 is compatible. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.8
-
.NETStandard 2.1
-
net5.0
NuGet packages (1)
Showing the top 1 NuGet packages that depend on ArtMind.AppFlow.Abstractions:
Package | Downloads |
---|---|
ArtMind.AppFlow
Flow orchestration framework for .NET applications |
GitHub repositories
This package is not used by any popular GitHub repositories.
New features:
1. FlowTasks
- A chain of tasks where the output type of the previous task became the input type for the following task. Task[T, TResult]
- FlowTaskStart[TResult]: Where TResult is the return type of Execute method
- FlowTask[T, TResult]: Where T is the input type of Execute method and TResult is the return type of Execute method
- FlowTaskEnd[T]: Where T is the input type of Execute method
2. Flow registration
- Additional extension registration method.