DontPanicLabs.Ifx.Configuration.Local
0.5.1-preview
Prefix Reserved
dotnet add package DontPanicLabs.Ifx.Configuration.Local --version 0.5.1-preview
NuGet\Install-Package DontPanicLabs.Ifx.Configuration.Local -Version 0.5.1-preview
<PackageReference Include="DontPanicLabs.Ifx.Configuration.Local" Version="0.5.1-preview" />
paket add DontPanicLabs.Ifx.Configuration.Local --version 0.5.1-preview
#r "nuget: DontPanicLabs.Ifx.Configuration.Local, 0.5.1-preview"
// Install DontPanicLabs.Ifx.Configuration.Local as a Cake Addin #addin nuget:?package=DontPanicLabs.Ifx.Configuration.Local&version=0.5.1-preview&prerelease // Install DontPanicLabs.Ifx.Configuration.Local as a Cake Tool #tool nuget:?package=DontPanicLabs.Ifx.Configuration.Local&version=0.5.1-preview&prerelease
Local Configuration
This project supports three configuration sources:
- Environment variables
- The
appsettings.json
file - The .NET User Secrets store
Environment Variables
The Config class first checks the appsettings.json
file for the presence of the skipEnvironmentVariables
entry. If this entry is found, and it is set to true, environment variables will not be loaded.
{
"skipEnvironmentVariables": true,
"ifx": {},
"appsettings": {}
}
This setting is primarily intended to ensure consistent environment configuration for testing purposes.
appsettings.json
After loading environment variables (or not), the Config class loads the appsettings.json
file, if included in the project. Values from appsettings.json will override values loaded from environment variables.
[!CAUTION] appsettings.json should never contain sensitive keys or secrets, as this file is checked into source control.
[!CAUTION] Because appsettings.json values will override matching environment variables, it's especially easy for checked-in appsettings.json values to unintentionally override environment variables in non-development environments.
User Secrets
The recommended method for managing configuration in a development environment is to use User Secrets: https://learn.microsoft.com/en-us/aspnet/core/security/app-secrets?view=aspnetcore-8.0&tabs=windows.
User secrets are stored outside of the project directory, so they are not checked into source control. The Config class will load user secrets after loading environment variables and the appsettings.json
file.
In order to load user secrets, you must specify the secrets file name in the ifx
section of the config:
{
"appSettings": { },
"ifx": {
"userSecretsId": "dpl.ifx.configuration.tests"
}
}
The user secrets file name is specified in the project file.
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<UserSecretsId>dpl.ifx.configuration.tests</UserSecretsId>
</PropertyGroup>
Configuration Sections
ifx
The ifx
section is intended for infrastructure items that do not directly relate to business operation of the application. Items such as connection strings, service endpoints, secret keys, etc.
appsettings
The appsettings
section is intended for configuration items that affect the operation of the business/domain logic of the application. Items such as feature flags, business rules, etc.
Configuration Exceptions
When the config initializes, it requires the presence of the ifx
and appsettings
sections. If either of these sections are missing, the config will throw an exception.
Due to how the .NET configuration libraries work, the following will not result in a valid config file:
{
"ifx": { },
"appsettings": { }
}
The ifx
and appsettings
sections must contain at least one key-value pair. This will prevent the config from throwing an exception if no configuration has been specified for the application:
{
"ifx": {
"_": ""
},
"appsettings": {
"_": ""
}
}
Development Setup
In a development setting, the following is the recommended approach to managing configuration:
appsettings.json
{
"ifx": {
"userSecretsId": "location.specified.in.project.file"
}
}
location.specified.in.project.file/secrets.json
{
"ifx": {
"Secret": "secret_value",
},
"appSettings": {
"Application_Setting": "value",
"Add more setting": "add some more"
}
}
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. |
-
net8.0
- DontPanicLabs.Ifx.Configuration.Contracts (>= 0.5.0-preview)
- Microsoft.Extensions.Configuration.Abstractions (>= 8.0.0)
- Microsoft.Extensions.Configuration.EnvironmentVariables (>= 8.0.0)
- Microsoft.Extensions.Configuration.Json (>= 8.0.1)
- Microsoft.Extensions.Configuration.UserSecrets (>= 8.0.1)
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 |
---|---|---|
0.5.1-preview | 39 | 11/14/2024 |
0.5.0-preview | 45 | 11/12/2024 |