Incursa.Platform
2026.3.6.320
dotnet add package Incursa.Platform --version 2026.3.6.320
NuGet\Install-Package Incursa.Platform -Version 2026.3.6.320
<PackageReference Include="Incursa.Platform" Version="2026.3.6.320" />
<PackageVersion Include="Incursa.Platform" Version="2026.3.6.320" />
<PackageReference Include="Incursa.Platform" />
paket add Incursa.Platform --version 2026.3.6.320
#r "nuget: Incursa.Platform, 2026.3.6.320"
#:package Incursa.Platform@2026.3.6.320
#addin nuget:?package=Incursa.Platform&version=2026.3.6.320
#tool nuget:?package=Incursa.Platform&version=2026.3.6.320
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
- https://github.com/incursa/platform
- docs/INDEX.md
- docs/outbox-quickstart.md
- docs/inbox-quickstart.md
| 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
- Incursa.Platform.ExactlyOnce (>= 2026.3.6.320)
- Microsoft.Extensions.Diagnostics.HealthChecks (>= 10.0.2)
- Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions (>= 10.0.2)
- Microsoft.Extensions.Hosting.Abstractions (>= 10.0.2)
- Microsoft.Extensions.Options (>= 10.0.2)
NuGet packages (10)
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.Postgres
PostgreSQL provider for Incursa Platform outbox, inbox, scheduler, fanout, metrics, and leases. |
|
|
Incursa.Platform.Email
Provider-agnostic email outbox primitives and dispatch workflows. |
|
|
Incursa.Platform.SqlServer
SQL Server provider for Incursa Platform outbox, inbox, scheduler, fanout, metrics, and leases. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 2026.3.6.320 | 39 | 3/6/2026 |
| 2026.3.4.1093 | 114 | 3/4/2026 |
| 2026.3.1.31 | 192 | 3/1/2026 |
| 2026.2.25.334 | 178 | 2/25/2026 |
| 2026.2.24.205 | 172 | 2/24/2026 |
| 2026.2.21.28 | 168 | 2/21/2026 |
| 2026.2.21.6 | 171 | 2/21/2026 |
| 2026.2.20.1418 | 174 | 2/20/2026 |
| 2026.2.20.1356 | 175 | 2/20/2026 |
| 2026.2.20.1343 | 180 | 2/20/2026 |
| 2026.2.20.908 | 164 | 2/20/2026 |
| 2026.2.20.310 | 179 | 2/20/2026 |
| 2026.2.20.132 | 170 | 2/20/2026 |
| 2026.2.20.82 | 182 | 2/20/2026 |
| 2026.2.19.224 | 180 | 2/19/2026 |
| 2026.2.19.203 | 178 | 2/19/2026 |
| 2026.2.19.92 | 185 | 2/19/2026 |
For support, contact nuget@incursa.com