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" />
                    
Directory.Packages.props
<PackageReference Include="Devkumi.SharedKernel.Infrastructure" />
                    
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 Devkumi.SharedKernel.Infrastructure --version 1.0.0
                    
#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
                    
Install as a Cake Addin
#tool nuget:?package=Devkumi.SharedKernel.Infrastructure&version=1.0.0
                    
Install as a Cake Tool

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