Reimaginate.Orchestrator.Hosting 1.1.1-rc.74

This is a prerelease version of Reimaginate.Orchestrator.Hosting.
dotnet add package Reimaginate.Orchestrator.Hosting --version 1.1.1-rc.74
                    
NuGet\Install-Package Reimaginate.Orchestrator.Hosting -Version 1.1.1-rc.74
                    
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="Reimaginate.Orchestrator.Hosting" Version="1.1.1-rc.74" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Reimaginate.Orchestrator.Hosting" Version="1.1.1-rc.74" />
                    
Directory.Packages.props
<PackageReference Include="Reimaginate.Orchestrator.Hosting" />
                    
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 Reimaginate.Orchestrator.Hosting --version 1.1.1-rc.74
                    
#r "nuget: Reimaginate.Orchestrator.Hosting, 1.1.1-rc.74"
                    
#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 Reimaginate.Orchestrator.Hosting@1.1.1-rc.74
                    
#: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=Reimaginate.Orchestrator.Hosting&version=1.1.1-rc.74&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Reimaginate.Orchestrator.Hosting&version=1.1.1-rc.74&prerelease
                    
Install as a Cake Tool

Reimaginate.Orchestrator.Hosting

Reusable command-line host composition helpers for customer Orchestrator hosts.

Use this package when a customer solution needs a small CLI or container-job host that wires standard Orchestrator services without repeating storage, event receiver, DataHub client, Redis lock, mediator, and command-line setup code.

Hosts that call UseConfiguredStorage() must explicitly set checkpoint and workflow instance storage providers. Hosts that call UseConfiguredEventReceiver() must explicitly set the event receiver provider. Use InMemory deliberately for local or ephemeral hosts.

using Reimaginate.Orchestrator.Hosting;

var builder = OrchestratorCommandLineHost.CreateBuilder(args);

builder.ConfigureServices((context, services) =>
{
    services.AddOrchestratorHost(context.Configuration, options => options
        .UseMediator<Mediator>(Mediator.RegisterHandlers)
        .UseWorkflowActionResolver<WorkflowActionResolver>()
        .UseDataHubClient()
        .UseConfiguredStorage()
        .UseConfiguredEventReceiver()
        .UseConfiguredWorkflowInstanceLocks());

    services.AddCustomerWorkflowActionDependencies(context.Configuration);
});

return await builder.RunOrchestratorCommandLineAsync(args);

Customers still provide their generated Mediator and WorkflowActionResolver partial classes so source generation can scan the customer action and workflow assemblies.

Minimal local configuration:

{
  "Orchestrator": {
    "WorkflowCheckpointStorage": {
      "Provider": "InMemory"
    },
    "WorkflowInstanceStorage": {
      "Provider": "InMemory"
    },
    "EventReceiver": {
      "Provider": "InMemory"
    }
  }
}
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

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
1.1.1-rc.74 66 6/3/2026
1.1.1-rc.73 53 6/3/2026
1.1.1-rc.72 48 6/3/2026
1.1.1-rc.7 48 6/3/2026