Devkumi.SharedKernel.Infrastructure
1.0.0
dotnet add package Devkumi.SharedKernel.Infrastructure --version 1.0.0
NuGet\Install-Package Devkumi.SharedKernel.Infrastructure -Version 1.0.0
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="Devkumi.SharedKernel.Infrastructure" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Devkumi.SharedKernel.Infrastructure" Version="1.0.0" />
<PackageReference Include="Devkumi.SharedKernel.Infrastructure" />
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 Devkumi.SharedKernel.Infrastructure --version 1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Devkumi.SharedKernel.Infrastructure, 1.0.0"
#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 Devkumi.SharedKernel.Infrastructure@1.0.0
#: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=Devkumi.SharedKernel.Infrastructure&version=1.0.0
#tool nuget:?package=Devkumi.SharedKernel.Infrastructure&version=1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Devkumi.SharedKernel.Infrastructure
Infrastructure services for Clean Architecture / DDD projects targeting .NET 10.
What's included
| Type | Description |
|---|---|
CurrentUserService |
Reads UserId (Ulid), UserName, Role, IpAddress, BearerToken, and claims from IHttpContextAccessor |
JwtAuthenticationConfiguration |
Registers JWT Bearer authentication with HS256; reads signing key from JWT_ISSUER_SIGNING_KEY env var |
OutBoxMessagesProcessingJob<T> |
Hangfire job that polls OutboxMessage rows, deserialises domain events via Newtonsoft.Json, and publishes them via MediatR IPublisher |
AddInfrastructureServices() |
Registers IHttpContextAccessor + ICurrentUserService |
AddJwtAuthenticationConfiguration() |
Registers JWT Bearer middleware |
Installation
dotnet add package Devkumi.SharedKernel.Infrastructure --version 1.0.0
Usage
services.AddInfrastructureServices();
services.AddJwtAuthenticationConfiguration(configuration);
// Register outbox processing job (one per DbContext)
services.AddScoped<OutBoxMessagesProcessingJob<MyDbContext>>();
RecurringJob.AddOrUpdate<OutBoxMessagesProcessingJob<MyDbContext>>(
"outbox-my-module",
job => job.Execute(CancellationToken.None),
"*/1 * * * *");
Required configuration
| Key | Description |
|---|---|
JWT_ISSUER_SIGNING_KEY |
HS256 signing secret (min 32 chars) |
Dependencies
- Devkumi.SharedKernel.Persistence
- Hangfire 1.8.x (AspNetCore + PostgreSql)
- Microsoft.AspNetCore.Authentication.JwtBearer 10.x
- StackExchange.Redis 2.x
- Polly 8.x
| 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net10.0
- Devkumi.SharedKernel.Persistence (>= 1.0.0)
- Hangfire.AspNetCore (>= 1.8.18)
- Hangfire.Core (>= 1.8.18)
- Hangfire.PostgreSql (>= 1.20.10)
- Microsoft.AspNetCore.Authentication.JwtBearer (>= 10.0.7)
- Microsoft.AspNetCore.Http.Abstractions (>= 2.3.0)
- Microsoft.Extensions.Caching.Abstractions (>= 10.0.7)
- Newtonsoft.Json (>= 13.0.3)
- Polly (>= 8.5.2)
- StackExchange.Redis (>= 2.8.31)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Devkumi.SharedKernel.Infrastructure:
| Package | Downloads |
|---|---|
|
Devkumi.SharedKernel.Presentation
ASP.NET Core presentation helpers: Minimal API IEndpoint pattern, endpoint scanning, global exception handler, Swagger/OpenAPI config, API versioning. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.0.0 | 142 | 6/17/2026 |