Kododo.ConfigWay.Core 1.0.0

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

Kododo.ConfigWay.Core

Core abstractions and interfaces for Kododo.ConfigWay — the runtime configuration editor for ASP.NET Core.

When to reference this package

You need this package only if you are building an extension for ConfigWay, such as:

  • a custom persistence store (IStore)
  • a custom provider or integration

Application developers should install Kododo.ConfigWay instead — it already pulls in this package transitively.

Install

dotnet add package Kododo.ConfigWay.Core

Key abstractions

IStore

Implement this interface to provide a custom persistence backend:

public interface IStore
{
    Task InitializeAsync(CancellationToken stoppingToken = default);
    Task<IReadOnlyList<Setting>> GetAllAsync(CancellationToken stoppingToken = default);
    Task SetAsync(IReadOnlyCollection<Setting> settings, CancellationToken stoppingToken = default);
    Task DeleteAsync(IReadOnlyCollection<string> keys, CancellationToken stoppingToken = default);
}

Register your store:

builder.AddConfigWay(x =>
{
    x.Store = new MyCustomStore(); // implements IStore
    x.AddOptions<AppOptions>();
});
Package Purpose
Kododo.ConfigWay Main package — DI registration, AddConfigWay
Kododo.ConfigWay.UI Embedded web UI
Kododo.ConfigWay.PostgreSQL PostgreSQL persistence store
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  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

    • No dependencies.
  • net8.0

    • No dependencies.
  • net9.0

    • No dependencies.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Kododo.ConfigWay.Core:

Package Downloads
Kododo.ConfigWay

Runtime configuration editor for ASP.NET Core. Persist and hot-reload application settings through a built-in web UI without restarting the application.

Kododo.ConfigWay.PostgreSQL

PostgreSQL persistence store for ConfigWay. Retains configuration overrides across application restarts using a single auto-managed database table.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.0 145 5/7/2026
1.0.0-alpha.5 55 5/6/2026
1.0.0-alpha.4 52 4/30/2026
1.0.0-alpha.3 48 4/29/2026
1.0.0-alpha.2 54 4/29/2026
1.0.0-alpha.1 53 4/21/2026
0.0.1 162 4/11/2026