NOF.Infrastructure.Core 7.0.0

There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package NOF.Infrastructure.Core --version 7.0.0
                    
NuGet\Install-Package NOF.Infrastructure.Core -Version 7.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="NOF.Infrastructure.Core" Version="7.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="NOF.Infrastructure.Core" Version="7.0.0" />
                    
Directory.Packages.props
<PackageReference Include="NOF.Infrastructure.Core" />
                    
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 NOF.Infrastructure.Core --version 7.0.0
                    
#r "nuget: NOF.Infrastructure.Core, 7.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 NOF.Infrastructure.Core@7.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=NOF.Infrastructure.Core&version=7.0.0
                    
Install as a Cake Addin
#tool nuget:?package=NOF.Infrastructure.Core&version=7.0.0
                    
Install as a Cake Tool

NOF.Infrastructure.Core

Core infrastructure package for the NOF Framework.

Overview

Provides the foundational infrastructure layer: the INOFAppBuilder application builder, the dependency-aware step pipeline for ordered service registration and application initialization, OpenTelemetry integration, and core service abstractions.

Key Concepts

Application Builder

INOFAppBuilder is the central entry point for configuring a NOF application. It orchestrates two phases:

  1. Service RegistrationIServiceRegistrationStep implementations register DI services
  2. Application InitializationIApplicationInitializationStep implementations configure the runtime pipeline

Step Pipeline

Steps declare dependencies via IAfter<T> and IBefore<T>, and the framework executes them in topological order:

public class MyDatabaseStep : IServiceRegistrationStep, IAfter<IBaseSettingsServiceRegistrationStep>
{
    public ValueTask ExecuteAsync(INOFAppBuilder builder)
    {
        // Register database services — guaranteed to run after settings are available
    }
}

Predefined Steps

The framework provides ordered initialization phases:

DataSeedObservabilitySecurityResponseFormattingAuthenticationBusinessLogicEndpoints

OpenTelemetry

Built-in tracing, metrics, and logging via OTLP exporter, with HTTP instrumentation included.

Installation

dotnet add package NOF.Infrastructure.Core

License

Apache-2.0

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 NOF.Infrastructure.Core:

Package Downloads
NOF.Extensions.Auth.Jwt.Client

JWT client extension for the NOF Framework — JWKS retrieval and shared token infrastructure.

NOF.Extensions.Auth.Jwt

JWT authority extension for the NOF Framework — token issuance, JWKS, key derivation, and refresh token management.

GitHub repositories

This package is not used by any popular GitHub repositories.