ArtMind.AppFlow
5.0.0
See the version list below for details.
dotnet add package ArtMind.AppFlow --version 5.0.0
NuGet\Install-Package ArtMind.AppFlow -Version 5.0.0
<PackageReference Include="ArtMind.AppFlow" Version="5.0.0" />
paket add ArtMind.AppFlow --version 5.0.0
#r "nuget: ArtMind.AppFlow, 5.0.0"
// Install ArtMind.AppFlow as a Cake Addin #addin nuget:?package=ArtMind.AppFlow&version=5.0.0 // Install ArtMind.AppFlow as a Cake Tool #tool nuget:?package=ArtMind.AppFlow&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
- ArtMind.AppFlow.Abstractions (>= 5.0.0)
- Microsoft.Extensions.DependencyInjection (>= 5.0.0)
- Microsoft.Extensions.Hosting.Abstractions (>= 3.1.7)
- Microsoft.Extensions.Logging.Abstractions (>= 3.1.7)
-
.NETStandard 2.1
- ArtMind.AppFlow.Abstractions (>= 5.0.0)
- Microsoft.Extensions.DependencyInjection (>= 5.0.0)
- Microsoft.Extensions.Hosting.Abstractions (>= 3.1.7)
- Microsoft.Extensions.Logging.Abstractions (>= 3.1.7)
-
net5.0
- ArtMind.AppFlow.Abstractions (>= 5.0.0)
- Microsoft.Extensions.DependencyInjection (>= 5.0.0)
- Microsoft.Extensions.Hosting.Abstractions (>= 3.1.7)
- Microsoft.Extensions.Logging.Abstractions (>= 3.1.7)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
8.0.0 | 171 | 1/30/2024 |
7.0.0 | 115 | 1/30/2024 |
6.0.1 | 474 | 8/30/2022 |
6.0.0 | 437 | 8/26/2022 |
5.0.0 | 411 | 8/22/2022 |
4.0.0 | 418 | 8/19/2022 |
3.0.3 | 426 | 12/14/2021 |
3.0.2.4 | 487 | 10/18/2021 |
3.0.1 | 339 | 10/17/2021 |
2.1.0.2 | 388 | 2/4/2021 |
2.1.0.1 | 574 | 9/7/2020 |
2.1.0 | 491 | 8/13/2020 |
2.0.2 | 471 | 7/28/2020 |
2.0.1 | 458 | 6/12/2020 |
1.0.0 | 479 | 4/26/2020 |
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.