Workleap.Extensions.Configuration.Substitution 1.1.2

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Workleap.Extensions.Configuration.Substitution --version 1.1.2
NuGet\Install-Package Workleap.Extensions.Configuration.Substitution -Version 1.1.2
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="Workleap.Extensions.Configuration.Substitution" Version="1.1.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Workleap.Extensions.Configuration.Substitution --version 1.1.2
#r "nuget: Workleap.Extensions.Configuration.Substitution, 1.1.2"
#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 Workleap.Extensions.Configuration.Substitution as a Cake Addin
#addin nuget:?package=Workleap.Extensions.Configuration.Substitution&version=1.1.2

// Install Workleap.Extensions.Configuration.Substitution as a Cake Tool
#tool nuget:?package=Workleap.Extensions.Configuration.Substitution&version=1.1.2

Workleap.Extensions.Configuration.Substitution

This package adds variable substitution configuration provider implementation for Microsoft.Extensions.Configuration.

nuget build

Getting started

dotnet add package Workleap.Extensions.Configuration.Substitution
// Example for an ASP.NET Core web application
var builder = WebApplication.CreateBuilder(args);

// Setup your configuration
builder.Configuration.AddJsonFile("appsettings.json");
builder.Configuration.AddEnvironmentVariables();
builder.Configuration.AddSubstitution(); // <-- Add this after other configuration providers

How it works

You can reference configuration values inside other configuration values by enclosing the referenced configuration key like this: ${ReferencedConfigurationKey}.

Examples

Consider this appsettings.json:

{
  "Credentials": {
    "Username": "alice1",
    "Password": "P@ssw0rd"
  },
  "ConnectionString": "usr=${Credentials:Username};pwd=${Credentials:Password}"
}

Evaluating the configuration value ConnectionString would return usr=alice1;pwd=P@ssw0rd.

This also works if you're using multiple configuration providers. For instance, one could have the Credentials:Password configuration value provided by a secret from Azure Key Vault and this value would have been injected into the ConnectionString value too.

It also works with arrays:

{
  "Credentials": [ "alice1", "P@ssw0rd" ],
  "ConnectionString": "usr=${Credentials:0};pwd=${Credentials:1}"
}

Again, you're not limited to JSON file providers, you could use substitution with any configuration providers. It was easier to use JSON files in these examples.

Escaping values

You might not want a specific value to be substituted. In that case, escape it using double curly braces:

{
  "Foo": "foo",
  "Bar": "${{Foo}}"
}

Evaluating the configuration value Bar would return ${Foo}.

Exceptions

You can encounter two kinds of exceptions if your configuration is incorrect:

  • UnresolvedConfigurationKeyException, if you're trying to substitute a configuration value that is undefined (i.e. the key does not exist).
  • RecursiveConfigurationKeyException, if you have many configuration values that reference each other in a recursive manner, no matter how deep the recursion is. The exception will give you details about the recursive path.

UnresolvedConfigurationKeyException can also be triggered sooner than later by using AddSubstitution(eagerValidation: true). Using eagerValidation with value true (default is false) instructs the library to check for undefined values in all the existing configuration values once, instead of checking for a particular value. This happens as soon as any configuration value is loaded.

Configuration providers order

When using .NET's IConfigurationBuilder, the order of configuration providers matters . Any configuration provider added after AddSubstitution() would not benefit from the substitution process.

License

Copyright © 2022, Workleap. This code is licensed under the Apache License, Version 2.0. You may obtain a copy of this license at https://github.com/gsoft-inc/gsoft-license/blob/master/LICENSE.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos 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.1.3-preview.37 42 5/31/2024
1.1.3-preview.36 38 5/31/2024
1.1.3-preview.35 42 5/21/2024
1.1.3-preview.34 48 5/10/2024
1.1.3-preview.33 39 5/3/2024
1.1.3-preview.32 104 4/15/2024
1.1.3-preview.31 60 4/12/2024
1.1.3-preview.30 52 4/3/2024
1.1.3-preview.29 53 4/3/2024
1.1.3-preview.28 47 3/8/2024
1.1.3-preview.27 52 3/7/2024
1.1.3-preview.26 51 3/4/2024
1.1.3-preview.25 53 3/1/2024
1.1.3-preview.24 46 2/16/2024
1.1.3-preview.23 52 2/12/2024
1.1.3-preview.22 54 2/6/2024
1.1.3-preview.21 48 2/6/2024
1.1.3-preview.20 54 1/22/2024
1.1.3-preview.19 48 1/12/2024
1.1.3-preview.18 44 1/12/2024
1.1.3-preview.17 45 1/12/2024
1.1.3-preview.16 71 12/18/2023
1.1.3-preview.15 85 11/26/2023
1.1.3-preview.14 65 11/17/2023
1.1.3-preview.13 54 11/13/2023
1.1.3-preview.12 124 11/6/2023
1.1.3-preview.11 62 10/30/2023
1.1.3-preview.10 62 10/20/2023
1.1.3-preview.9 69 10/17/2023
1.1.3-preview.8 67 10/13/2023
1.1.3-preview.7 67 9/26/2023
1.1.3-preview.6 61 9/25/2023
1.1.3-preview.5 55 9/21/2023
1.1.3-preview.4 57 9/20/2023
1.1.3-preview.3 55 9/20/2023
1.1.3-preview.2 59 9/20/2023
1.1.3-preview.1 77 8/9/2023
1.1.2 23,812 7/20/2023
1.1.2-preview.20 75 7/20/2023