Incursa.Platform 2026.3.9.853

Prefix Reserved
dotnet add package Incursa.Platform --version 2026.3.9.853
                    
NuGet\Install-Package Incursa.Platform -Version 2026.3.9.853
                    
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="Incursa.Platform" Version="2026.3.9.853" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Incursa.Platform" Version="2026.3.9.853" />
                    
Directory.Packages.props
<PackageReference Include="Incursa.Platform" />
                    
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 Incursa.Platform --version 2026.3.9.853
                    
#r "nuget: Incursa.Platform, 2026.3.9.853"
                    
#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 Incursa.Platform@2026.3.9.853
                    
#: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=Incursa.Platform&version=2026.3.9.853
                    
Install as a Cake Addin
#tool nuget:?package=Incursa.Platform&version=2026.3.9.853
                    
Install as a Cake Tool

Incursa.Platform

Core platform abstractions and orchestration. SQL Server integrations live in Incursa.Platform.SqlServer.

Install

dotnet add package Incursa.Platform
dotnet add package Incursa.Platform.SqlServer

Usage

var builder = WebApplication.CreateBuilder(args);

builder.Services.AddSqlPlatform(
    "Server=localhost;Database=MyApp;Trusted_Connection=true;",
    options =>
    {
        options.EnableSchemaDeployment = true;
        options.EnableSchedulerWorkers = true;
    });

var app = builder.Build();

Examples

One-time execution registry

Use xref:Incursa.Platform.OnceExecutionRegistry to guard idempotent startup tasks or DI registrations.

var registry = new OnceExecutionRegistry();

if (!registry.CheckAndMark("platform:di"))
{
    builder.Services.AddSqlPlatform("Server=localhost;Database=MyApp;Trusted_Connection=true;");
}

if (registry.HasRun("platform:di"))
{
    logger.LogInformation("Platform services already registered.");
}

Outbox + Inbox configuration

Use SqlPlatformOptions.ConfigureOutbox and SqlPlatformOptions.ConfigureInbox to tune outbox/inbox behavior while keeping a single registration call.

Discovery-based registration

builder.Services.AddSingleton<IPlatformDatabaseDiscovery>(new MyTenantDiscovery());

builder.Services.AddSqlPlatformMultiDatabaseWithDiscovery(enableSchemaDeployment: true);

Documentation

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 (12)

Showing the top 5 NuGet packages that depend on Incursa.Platform:

Package Downloads
Incursa.Platform.Observability

Shared observability primitives for platform events, tags, and recovery snapshots.

Incursa.Platform.Webhooks

Provider-agnostic webhook ingestion, classification, and processing primitives.

Incursa.Platform.SqlServer

SQL Server provider for Incursa Platform outbox, inbox, scheduler, fanout, metrics, and leases.

Incursa.Platform.Postgres

PostgreSQL provider for Incursa Platform outbox, inbox, scheduler, fanout, metrics, and leases.

Incursa.Platform.InMemory

In-memory provider for Incursa Platform primitives for testing and local development.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2026.3.9.853 404 3/9/2026
2026.3.9.100 182 3/9/2026
2026.3.6.320 278 3/6/2026
2026.3.4.1093 223 3/4/2026
2026.3.1.31 220 3/1/2026
2026.2.25.334 202 2/25/2026
2026.2.24.205 202 2/24/2026
2026.2.21.28 188 2/21/2026
2026.2.21.6 191 2/21/2026
2026.2.20.1418 192 2/20/2026
2026.2.20.1356 198 2/20/2026
2026.2.20.1343 200 2/20/2026
2026.2.20.908 184 2/20/2026
2026.2.20.310 196 2/20/2026
2026.2.20.132 188 2/20/2026
2026.2.20.82 199 2/20/2026
2026.2.19.224 201 2/19/2026
6.0.5 594 3/13/2026
6.0.3 287 3/10/2026
6.0.1 267 3/10/2026
Loading failed

For support, contact nuget@incursa.com