Stratara.Shared
3.1.6
See the version list below for details.
dotnet add package Stratara.Shared --version 3.1.6
NuGet\Install-Package Stratara.Shared -Version 3.1.6
<PackageReference Include="Stratara.Shared" Version="3.1.6" />
<PackageVersion Include="Stratara.Shared" Version="3.1.6" />
<PackageReference Include="Stratara.Shared" />
paket add Stratara.Shared --version 3.1.6
#r "nuget: Stratara.Shared, 3.1.6"
#:package Stratara.Shared@3.1.6
#addin nuget:?package=Stratara.Shared&version=3.1.6
#tool nuget:?package=Stratara.Shared&version=3.1.6
Stratara.Shared
License: MIT.
Umbrella of shared utilities for the Stratara framework. Re-exports the Tier-A/B stack (Abstractions, Contracts, Diagnostics, Domain, Resilience, SessionContext) so consumers can pull one package and reach every common type.
Contents
- Source-generated
Logger*Extensionsfor outbox, saga, projection, messaging, and command flows (kept in Shared until each subdomain extracts to its own Tier-C package). - Domain-event helpers + merge primitives used across the framework.
- Re-export of every Tier-A/B Stratara public type via project-reference fan-out.
Quick reference
// One package reference reaches every Tier-A/B public type
using Stratara.Abstractions.Mediator; // ICommand, IQuery, IMediator
using Stratara.Contracts.Session; // SessionContext
using Stratara.Diagnostics; // ApplicationDiagnostics
// Source-generated logger extensions provided by Shared
logger.LogCommandWorkerStarted();
Dependencies
Transitively depends on every Tier-A/B package: Stratara.Abstractions, Stratara.Contracts, Stratara.Diagnostics, Stratara.Domain, Stratara.Resilience, Stratara.Sessions.
| 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
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.8)
- Microsoft.Extensions.Logging.Abstractions (>= 10.0.8)
- Microsoft.Extensions.Options (>= 10.0.8)
- Microsoft.Extensions.Resilience (>= 10.6.0)
- OpenTelemetry.Api (>= 1.15.3)
- Stratara.Abstractions (>= 3.1.6)
- Stratara.Contracts (>= 3.1.6)
- Stratara.Diagnostics (>= 3.1.6)
- Stratara.Domain (>= 3.1.6)
- Stratara.Resilience (>= 3.1.6)
- Stratara.Sessions (>= 3.1.6)
NuGet packages (11)
Showing the top 5 NuGet packages that depend on Stratara.Shared:
| Package | Downloads |
|---|---|
|
Stratara.Projections
Projection runtime for the Stratara event-sourced stack — projection-handler discovery, change-set creation, update application, and projection manager. Sits between read-model repositories and the event-bundle dispatcher. |
|
|
Stratara.Outbox.RabbitMQ
Outbox-pattern command and event dispatch for the Stratara event-sourced stack — RabbitMQ IMessageBus implementation, retry worker, mediator command worker, and Redis-coordinated projection-replay state. Azure Service Bus support ships as the sibling Stratara.Outbox.AzureServiceBus package. |
|
|
Stratara.EventSourcing.EntityFrameworkCore
EF Core persistence for the Stratara event-sourced stack on PostgreSQL — write-store, read-store, ASP.NET Identity store, shared conventions, value generators, and UnitOfWork primitives. Targets Npgsql with pgvector. |
|
|
Stratara.Infrastructure
Infrastructure glue for the Stratara framework — authorization decorators, configuration providers, and DI composition helpers that wire Mediator, Outbox, Identity, and EF Core into a hosted app. |
|
|
Stratara.Sagas
Saga runtime for the Stratara event-sourced stack — ISaga discovery, manager / handler dispatch, cached method invoker, and a hosted SagaWorker that routes incoming event bundles to matching sagas. |
GitHub repositories
This package is not used by any popular GitHub repositories.
### Changed
- **License changed from FSL-1.1-MIT to the MIT License.** Stratara is now OSI-approved open
source — free for any use, including commercial, with no competition clause and no two-year
conversion delay. The previous Functional Source License (source-available, converting to MIT
two years after each release) has been replaced outright. Package metadata now declares the
SPDX expression `MIT` (`PackageLicenseExpression`), so nuget.org renders a standard clickable
MIT license label instead of an embedded custom-license file. The `LICENSE` file at the repo
root now contains the standard MIT text and is still bundled into every package. No code or API
changes accompany this — it is purely a licensing and metadata change. Previously published
versions (3.0.20 through 3.1.5) remain under the FSL terms they shipped with; this change applies
to all versions released from here on.