Extensions.Configuration
0.0.3
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Extensions.Configuration --version 0.0.3
NuGet\Install-Package Extensions.Configuration -Version 0.0.3
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="Extensions.Configuration" Version="0.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Extensions.Configuration --version 0.0.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Extensions.Configuration, 0.0.3"
#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.
// Install Extensions.Configuration as a Cake Addin #addin nuget:?package=Extensions.Configuration&version=0.0.3 // Install Extensions.Configuration as a Cake Tool #tool nuget:?package=Extensions.Configuration&version=0.0.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Extensions.Configuration
Extensions.Configuration.Resolver
Description
Within system configuration, sometimes references to other configuration entries are used.
{
"AppName" : "MyApp",
"UserSettings" : "${HOMEPATH}/.{$env:AppName}/settings.json"
}
This package adds functionality to Microsoft.Extensions.Configuration, which can resolve such references.
Installation
dotnet add package Extensions.Configuration
Usage
In Program.cs
using Microsoft.Extensions.Configuration
hostbuilder.ConfigureAppConfiguration(config =>
{
config
.AddJsonFile(...)
.AddEnvironmentVariables()
.AddCommandLine(args);
})
In Startup.cs
var userSettingsResolved = configuration.ResolveValue("UserSettings");
// Returns e.g.: C:\Users\MyUser\.MyApp\settings.json
Remarks
Supported placholders:
{$env:KEY}, ${KEY}, $(KEY), %KEY%
There are no supported framework assets in this package.
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.0
- Extensions.Configuration.Resolver (>= 0.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.