Cirreum.Kernel 1.0.1

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

Cirreum.Kernel

NuGet Version NuGet Downloads GitHub Release License .NET

Cirreum's foundational abstractions — cross-host primitives every Cirreum app builds on.

Overview

Cirreum.Kernel is the foundational base of the Cirreum framework. It contains the cross-host abstractions, contracts, value types, and sentinels that every Cirreum package consumes — directly or transitively — regardless of host (Server, WebAssembly, Serverless).

Kernel is dependency-light and deliberately small. It defines:

  • Identity & security primitivesIUserState, IUserStateAccessor, IUserSession, UserStateBase, IApplicationUser, IApplicationUserResolver, IOwnedApplicationUser, AnonymousUser, AuthenticationBoundary, ClaimsHelper
  • User profile modelUserProfile, UserProfileAddress, UserProfileMembership, UserProfileOrganization, IUserProfileEnricher
  • Authentication events & keysAuthenticationContextKeys and the IAuthenticationEvent family (IAuthenticationEventPublisher, IAuthenticationEventHandler, plus the CredentialRevoked / SessionTerminationRequested / UserAccountDisabled / GrantsInvalidated records)
  • Conductor markersINotification, INotificationHandler (the Result-free notification primitives; the rest of the Conductor surface lives in Cirreum.Contracts)
  • Message registryIMessageRegistry, MessageDefinition, MessageProperty, MessageVersionAttribute, MessageRegistryBase, MessageScanner
  • Framework bootstrapIDomainApplicationBuilder, DomainContext, DomainServicesBuilder, AssemblyScanner, IDomainContextInitializer, DomainRuntimeType, DomainFeatureResolver, IDomainObject
  • Environment, time & enumsIDomainEnvironment, IDateTimeClock, Timing, IdentityProviderType
  • State foundationIApplicationState (the marker interface other state contracts extend)
  • Health, diagnostics & utilitiesIStartedStatus, CirreumTelemetry, InternetDomainValidator, MissingResource, plus extension methods and SmartFormat command sources

Every other Cirreum package builds on Kernel.

Where it fits

Kernel is L1 — the dependency-free floor of the Cirreum framework. It references no other Cirreum package — not even its foundation peers Cirreum.Result and Cirreum.Exceptions (consumers pull those as needed). Everything else — the contract surface, the default implementations, the host infrastructure, and the runtime — builds on Kernel, directly or transitively. That zero-dependency floor is the point: Kernel can be consumed by anyone, anywhere, without dragging in the rest of the framework.

Contribution Guidelines

  1. Be conservative with new abstractions
    The API surface must remain stable and meaningful — Kernel sits at the foundation; changes ripple through every Cirreum package.

  2. Limit dependency expansion
    Only add foundational, version-stable dependencies. Kernel must remain dependency-light to qualify as the framework's base.

  3. Favor additive, non-breaking changes
    Breaking changes in Kernel cascade through every dependent package and every Cirreum app. Major version bumps are rare.

  4. Include thorough unit tests
    All primitives should be independently testable.

  5. Document architectural decisions
    Context and reasoning should be clear for future maintainers.

  6. Follow .NET conventions
    Use established patterns from Microsoft.Extensions.* libraries.

Versioning

Cirreum.Kernel follows Semantic Versioning:

  • Major — Breaking API changes
  • Minor — New features, backward compatible
  • Patch — Bug fixes, backward compatible

Given its foundational role, major version bumps are rare and carefully considered.

License

This project is licensed under the MIT License — see the LICENSE file for details.


Cirreum Foundation Framework
Layered simplicity for modern .NET

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

Showing the top 2 NuGet packages that depend on Cirreum.Kernel:

Package Downloads
Cirreum.Contracts

The contract surface of the Cirreum framework. The cross-host abstractions, vocabulary, and value types a Cirreum application programs against — the Conductor (CQRS) surface, Caching, State, Presence, RemoteServices, FileSystem, the Invocation seam, and the Authorization-pillar vocabulary and contracts. Implementations ship in Cirreum.Domain. The cross-host triad: Cirreum.Kernel (primitives) → Cirreum.Contracts (contracts) → Cirreum.Domain (implementations).

Cirreum.Messaging.Distributed

Messaging track — distributed-envelope orchestration for the Cirreum framework. DistributedMessage, MessageRegistry, MessageScanner, IDistributedTransportPublisher, options. Sibling to Cirreum.Messaging (generic queue/topic/transport abstractions); composes on top of it.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.1 66 6/4/2026
1.0.0 44 6/4/2026