Excalibur.Workflows
10.0.0-alpha.7
See the version list below for details.
dotnet add package Excalibur.Workflows --version 10.0.0-alpha.7
NuGet\Install-Package Excalibur.Workflows -Version 10.0.0-alpha.7
<PackageReference Include="Excalibur.Workflows" Version="10.0.0-alpha.7" />
<PackageVersion Include="Excalibur.Workflows" Version="10.0.0-alpha.7" />
<PackageReference Include="Excalibur.Workflows" />
paket add Excalibur.Workflows --version 10.0.0-alpha.7
#r "nuget: Excalibur.Workflows, 10.0.0-alpha.7"
#:package Excalibur.Workflows@10.0.0-alpha.7
#addin nuget:?package=Excalibur.Workflows&version=10.0.0-alpha.7&prerelease
#tool nuget:?package=Excalibur.Workflows&version=10.0.0-alpha.7&prerelease
Excalibur.Workflows
Embedded durable-execution engine for the Excalibur framework. Run durable workflows on the event store you already have — no separate server, sidecar, or dedicated database.
A workflow body is ordinary async C#. Every non-deterministic decision (activity calls, and — in later
waves — timers, signals, time, and identifiers) flows through an IWorkflowContext and is recorded to an
append-only journal. On crash and restart the engine replays that journal: activities whose completion is
already journaled return their recorded result without re-executing, and execution resumes at the first
un-journaled step.
services
.AddWorkflows()
.AddActivity<ChargeCard, ChargeRequest, Receipt>("charge-card")
.AddWorkflow("checkout", async (ctx, input, ct) =>
{
var order = (Order)input;
var receipt = await ctx.CallActivityAsync<Receipt>("charge-card", order.Charge, ct);
return receipt;
});
// Start (or resume) a durable instance:
await executor.StartAsync("checkout", instanceId: order.Id, input: order, ct);
Activities run at-least-once and therefore must be idempotent: a crash between an activity running and its completion being journaled causes it to run again on replay.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net10.0
- Ben.Demystifier (>= 0.4.1)
- Dapper (>= 2.1.72)
- Excalibur.Dispatch.Abstractions (>= 10.0.0-alpha.7)
- Excalibur.EventSourcing.Abstractions (>= 10.0.0-alpha.7)
- Excalibur.Workflows.Abstractions (>= 10.0.0-alpha.7)
- Medo.Uuid7 (>= 3.2.0)
- Microsoft.Extensions.Configuration (>= 10.0.10)
- Microsoft.Extensions.Configuration.Abstractions (>= 10.0.10)
- Microsoft.Extensions.Configuration.Binder (>= 10.0.10)
- Microsoft.Extensions.DependencyInjection (>= 10.0.10)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.10)
- Microsoft.Extensions.Diagnostics.HealthChecks (>= 10.0.10)
- Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions (>= 10.0.10)
- Microsoft.Extensions.Hosting.Abstractions (>= 10.0.10)
- Microsoft.Extensions.Logging.Abstractions (>= 10.0.10)
- Microsoft.Extensions.Options (>= 10.0.10)
- Microsoft.Extensions.Options.ConfigurationExtensions (>= 10.0.10)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Excalibur.Workflows:
| Package | Downloads |
|---|---|
|
Excalibur.Testing.Conformance
Conformance test kits for Excalibur infrastructure implementations. Provides reusable abstract test suites for IEventStore, IOutboxStore, ISagaStore, ISnapshotStore, and other provider contracts. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 10.0.0-alpha.8 | 38 | 8/14/2026 |
| 10.0.0-alpha.7 | 44 | 8/13/2026 |
| 10.0.0-alpha.6 | 50 | 8/11/2026 |
| 10.0.0-alpha.5 | 52 | 8/10/2026 |
See CHANGELOG.md for release notes