BackWave.Pro 1.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package BackWave.Pro --version 1.0.0
                    
NuGet\Install-Package BackWave.Pro -Version 1.0.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="BackWave.Pro" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="BackWave.Pro" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="BackWave.Pro" />
                    
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 BackWave.Pro --version 1.0.0
                    
#r "nuget: BackWave.Pro, 1.0.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.
#:package BackWave.Pro@1.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=BackWave.Pro&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=BackWave.Pro&version=1.0.0
                    
Install as a Cake Tool

BackWave.Pro

Revenue-gated add-on features for BackWave. v1 adds Workflows: durable DAGs of jobs with fan-out, fan-in, dependencies, and failure propagation, orchestrated on the same engine and storage as your regular jobs.

Licensing. BackWave Pro is free to use for organizations under $1M USD in annual revenue. Above that, a license is required. Pro always soft-fails: without a valid license it still runs in full and logs a one-line notice, and it never blocks your app. See the included EULA for terms.

using BackWave.Pro;

// Read the license from config (null is the fine, free-tier default).
builder.Services.AddBackWavePro(builder.Configuration["BackWave:ProLicense"]);

Build and enqueue a workflow through the same BackWaveClient you already use:

var workflow = client.BuildWorkflow("order-fulfillment");
workflow
    .AddJob("validate", new ValidateOrder(orderId))
    .AddJob("charge",   new ChargePayment(orderId),   dependsOn: ["validate"])
    .AddJob("reserve",  new ReserveInventory(orderId), dependsOn: ["validate"])
    .AddJob("pack",     new PackShipment(orderId),     dependsOn: ["charge", "reserve"])
    .AddJob("notify",   new NotifyBuyer(orderId),      dependsOn: ["pack"]);

var workflowId = await client.EnqueueWorkflowAsync(workflow.Build());

validate runs, then charge and reserve in parallel, then pack once both succeed, then notify. If a node dead-letters, its on-success dependents cancel and the whole workflow projects Failed. Failure dominates.

To see workflows in the dashboard (a Workflows tab with a live graph), add BackWave.Pro.Dashboard. Full documentation and licensing details: https://backwave.app

Product 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on BackWave.Pro:

Package Downloads
BackWave.Pro.Dashboard

BackWave Pro dashboard surfaces that contribute to the free BackWave dashboard through its extension points. Free to use under $1M annual revenue; a license is required above that.

BackWave.Pro.Mcp

BackWave Pro: a Model Context Protocol (MCP) server over your BackWave jobs — AI agents monitor queues and jobs and (opt-in) act on them through tools mounted in your own ASP.NET Core host. Free to use under $1M annual revenue; a license is required above that.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.4.0 128 7/18/2026
1.3.0 136 7/15/2026
1.2.0 142 7/12/2026
1.1.1 116 7/10/2026
1.1.0 126 7/6/2026
1.0.0 113 7/6/2026

Release notes and upgrade guidance: https://backwave.app/