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
<PackageReference Include="Kododo.ConfigWay.Core" Version="1.0.0" />
<PackageVersion Include="Kododo.ConfigWay.Core" Version="1.0.0" />
<PackageReference Include="Kododo.ConfigWay.Core" />
paket add Kododo.ConfigWay.Core --version 1.0.0
#r "nuget: Kododo.ConfigWay.Core, 1.0.0"
#:package Kododo.ConfigWay.Core@1.0.0
#addin nuget:?package=Kododo.ConfigWay.Core&version=1.0.0
#tool nuget:?package=Kododo.ConfigWay.Core&version=1.0.0
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>();
});
Related packages
| Package | Purpose |
|---|---|
| Kododo.ConfigWay | Main package — DI registration, AddConfigWay |
| Kododo.ConfigWay.UI | Embedded web UI |
| Kododo.ConfigWay.PostgreSQL | PostgreSQL persistence store |
Links
| Product | Versions 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. |
-
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 |