Emit 1.0.0-alpha.8

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

Emit

A transactional outbox library for .NET. Emit solves the classic dual-write problem: your business data and your outgoing messages commit together or not at all, so you never end up in the sad state where the database saved but the message didn't (or worse, the other way around).

How it works

Emit supports two operating modes. In outbox mode, messages are serialized and written to your database within your transaction. A background worker then picks them up, delivers them to the provider, and deletes them on success — retrying automatically on failure. In direct mode, messages go straight to the provider without persistence, which is useful when you care about resilience but not strict transactional guarantees.

Groups of messages are always delivered in order. Different groups are processed in parallel. The library is provider-agnostic: persistence backends and message providers are plugged in separately, and Emit orchestrates everything in between.

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

Showing the top 5 NuGet packages that depend on Emit:

Package Downloads
Emit.Kafka

Kafka outbox provider for Emit. Enables reliable Kafka message production through the transactional outbox pattern.

Emit.MongoDB

MongoDB persistence provider for Emit. Stores outbox entries in MongoDB with support for sharding and atomic sequence generation.

Emit.EntityFrameworkCore

Entity Framework Core persistence provider for Emit. Stores outbox entries using Entity Framework Core with support for PostgreSQL via Npgsql.

Emit.OpenTelemetry

OpenTelemetry instrumentation for the Emit library. Provides AddEmitInstrumentation() for registering Emit meters with OpenTelemetry and configuring static tag enrichment.

Emit.Mediator

In-process mediator pattern for the Emit library. Provides request-response dispatching through IRequestHandler with a unified middleware pipeline.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.0-alpha.8 55 3/31/2026
1.0.0-alpha.7 65 3/25/2026
1.0.0-alpha.6 67 3/13/2026
1.0.0-alpha.5 57 3/12/2026
1.0.0-alpha.4 73 3/12/2026
1.0.0-alpha.3 51 3/6/2026
1.0.0-alpha.2 46 3/6/2026
1.0.0-alpha.1 47 3/6/2026