Cirreum.Runtime.Secrets 1.0.5

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

Cirreum.Runtime.Secrets

NuGet Version NuGet Downloads GitHub Release License .NET

Seamless secrets management for Cirreum Runtime applications

Overview

Cirreum.Runtime.Secrets provides a unified configuration interface for integrating secrets providers into ASP.NET Core applications. It simplifies the process of adding secure secret management capabilities with minimal configuration.

Features

  • Simple extension method for ASP.NET Core host builder
  • Built-in Azure Key Vault integration
  • Automatic duplicate registration prevention
  • Follows Cirreum Foundation Framework patterns

Installation

dotnet add package Cirreum.Runtime.Secrets

Usage

Add secrets management to your ASP.NET Core application:

var builder = WebApplication.CreateBuilder(args);

// Add secrets provider support
builder.AddSecrets();

var app = builder.Build();

The AddSecrets() extension method automatically:

  • Registers Azure Key Vault as the default secrets provider
  • Prevents duplicate registrations using marker types
  • Configures all necessary services for secrets management

Supported Providers

Currently supported:

  • Azure Key Vault (via Cirreum.Secrets.Azure)

Future support planned:

  • AWS Secrets Manager

Contribution Guidelines

  1. Be conservative with new abstractions
    The API surface must remain stable and meaningful.

  2. Limit dependency expansion
    Only add foundational, version-stable dependencies.

  3. Favor additive, non-breaking changes
    Breaking changes ripple through the entire ecosystem.

  4. Include thorough unit tests
    All primitives and patterns 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.Runtime.Secrets 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

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.5 103 1/28/2026
1.0.4 91 1/21/2026
1.0.3 147 12/20/2025
1.0.2 258 12/19/2025
1.0.1 289 12/16/2025
1.0.0 213 11/24/2025