Microsoft.Extensions.Configuration.Abstractions 8.0.0

About

Provides abstractions of key-value pair based configuration. Interfaces defined in this package are implemented by classes in Microsoft.Extensions.Configuration and other configuration packages.

Key Features

  • Abstractions for string key-value pair configuration sources and sections
  • Path conventions of keys establishing a heirachy of values
  • Support for multiple configuration sources, aggregating and defining precdence for values
  • Support for reload on change

How to Use

The example below shows a small code sample using this library and trying out the ConfigurationKeyName attribute available since .NET 6:

public class MyClass
{
    [ConfigurationKeyName("named_property")]
    public string NamedProperty { get; set; }
}

Given the simple class above, we can create a dictionary to hold the configuration data and use it as the memory source to build a configuration section:

var dic = new Dictionary<string, string>
{
    {"named_property", "value for named property"},
};

var config = new ConfigurationBuilder()
    .AddInMemoryCollection(dic)
    .Build();

var options = config.Get<MyClass>();
Console.WriteLine(options.NamedProperty); // returns "value for named property"

Main Types

The main types provided by this library are:

  • Microsoft.Extensions.Configuration.IConfiguration
  • Microsoft.Extensions.Configuration.IConfigurationBuilder
  • Microsoft.Extensions.Configuration.IConfigurationProvider
  • Microsoft.Extensions.Configuration.IConfigurationRoot
  • Microsoft.Extensions.Configuration.IConfigurationSection

Additional Documentation

Feedback & Contributing

Microsoft.Extensions.Caching.Abstractions is released as open source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.

Showing the top 20 packages that depend on Microsoft.Extensions.Configuration.Abstractions.

Packages Downloads
Elastic.Apm.AspNetCore
Elastic APM for ASP.NET Core. This package contains auto instrumentation for ASP.NET Core. See: https://github.com/elastic/apm-agent-dotnet/tree/main/docs
317
Elastic.Apm.AspNetCore
Elastic APM for ASP.NET Core. This package contains auto instrumentation for ASP.NET Core. See: https://github.com/elastic/apm-agent-dotnet/tree/main/docs
2,025
Microsoft.AspNetCore.Hosting.Abstractions
ASP.NET Core hosting and startup abstractions for web applications.
6,942
Microsoft.AspNetCore.Hosting.Server.Abstractions
ASP.NET Core hosting server abstractions for web applications.
2,136
Microsoft.AspNetCore.Hosting.Server.Abstractions
ASP.NET Core hosting server abstractions for web applications.
6,939
Microsoft.AspNetCore.Hosting.Server.Abstractions
ASP.NET Core hosting server abstractions for web applications. This package was built from the source code at https://github.com/aspnet/Hosting/tree/0724e6cde1149ee1a19bfec9c13a2c9327b71213
1,637
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
251
Microsoft.Extensions.Configuration
Implementation of key-value pair based configuration for Microsoft.Extensions.Configuration. Includes the memory configuration provider.
5,404
Microsoft.Extensions.Configuration
Implementation of key-value pair based configuration for Microsoft.Extensions.Configuration. Includes the memory configuration provider.
8,889
Microsoft.Extensions.Configuration.EnvironmentVariables
Environment variables configuration provider implementation for Microsoft.Extensions.Configuration. This package enables you to read configuration parameters from environment variables. You can use EnvironmentVariablesExtensions.AddEnvironmentVariables extension method on IConfigurationBuilder to add the environment variables configuration provider to the configuration builder.
185
Microsoft.Extensions.Configuration.Json
JSON configuration provider implementation for Microsoft.Extensions.Configuration. This package enables you to read your application's settings from a JSON file. You can use JsonConfigurationExtensions.AddJsonFile extension method on IConfigurationBuilder to add the JSON configuration provider to the configuration builder.
175
Microsoft.Extensions.Hosting.Abstractions
Hosting and startup abstractions for applications.
250
Microsoft.Extensions.Hosting.Abstractions
.NET Core hosting and startup abstractions for applications.
217
Microsoft.Extensions.Hosting.Abstractions
.NET Core hosting and startup abstractions for applications.
5,543
Microsoft.Extensions.Hosting.Abstractions
.NET Core hosting and startup abstractions for applications.
9,120
Microsoft.Extensions.Logging.Console
Console logger provider implementation for Microsoft.Extensions.Logging.
5,384
Microsoft.Extensions.Logging.Console
Console logger provider implementation for Microsoft.Extensions.Logging.
8,888
Microsoft.Extensions.Options.ConfigurationExtensions
Provides additional configuration specific functionality related to Options.
265
Microsoft.Extensions.Options.ConfigurationExtensions
Provides additional configuration specific functionality related to Options.
5,452
Microsoft.Extensions.Options.ConfigurationExtensions
Provides additional configuration specific functionality related to Options.
8,938

https://go.microsoft.com/fwlink/?LinkID=799421

.NET Framework 4.6.2

.NET 6.0

.NET 7.0

.NET 8.0

.NET Standard 2.0

Version Downloads Last updated
9.0.2 0 02/11/2025
9.0.1 2 01/29/2025
9.0.0 12 11/17/2024
9.0.0-rc.2.24473.5 11 11/04/2024
9.0.0-rc.1.24431.7 10 11/29/2024
9.0.0-preview.7.24405.7 7 11/14/2024
9.0.0-preview.6.24327.7 5 11/14/2024
9.0.0-preview.5.24306.7 5 11/14/2024
9.0.0-preview.4.24266.19 12 05/25/2024
9.0.0-preview.3.24172.9 9 04/18/2024
9.0.0-preview.2.24128.5 9 04/18/2024
9.0.0-preview.1.24080.9 9 06/03/2024
8.0.0 248 12/02/2023
8.0.0-rc.2.23479.6 8 04/18/2024
8.0.0-rc.1.23419.4 14 06/03/2024
8.0.0-preview.7.23375.6 12 04/18/2024
8.0.0-preview.6.23329.7 36 08/07/2023
8.0.0-preview.5.23280.8 8 04/18/2024
8.0.0-preview.4.23259.5 9 06/03/2024
8.0.0-preview.3.23174.8 12 06/03/2024
8.0.0-preview.2.23128.3 12 06/03/2024
8.0.0-preview.1.23110.8 11 06/03/2024
7.0.0 106 03/21/2023
7.0.0-rc.2.22472.3 11 04/18/2024
7.0.0-rc.1.22426.10 19 06/03/2024
7.0.0-preview.7.22375.6 8 06/03/2024
7.0.0-preview.6.22324.4 11 04/18/2024
7.0.0-preview.5.22301.12 6 06/03/2024
7.0.0-preview.4.22229.4 18 04/18/2024
7.0.0-preview.3.22175.4 8 06/03/2024
7.0.0-preview.1.22076.8 9 06/03/2024
6.0.2-mauipre.1.22102.15 9 06/03/2024
6.0.2-mauipre.1.22054.8 13 06/03/2024
6.0.1 6 12/02/2024
6.0.0-rc.2.21480.5 10 06/03/2024
6.0.0-preview.7.21377.19 8 06/03/2024
6.0.0-preview.6.21352.12 10 06/03/2024
6.0.0-preview.4.21253.7 9 05/09/2022
5.0.0-rc.2.20475.5 11 06/03/2024
5.0.0-rc.1.20451.14 10 06/03/2024
5.0.0-preview.5.20278.1 9 06/03/2024
5.0.0-preview.3.20215.2 16 06/03/2024
3.1.32 9,028 05/11/2023
3.1.31 13 06/03/2024
3.1.30 5,469 11/03/2022
3.1.29 11 09/29/2022
3.1.28 10 06/03/2024
3.1.27 13 04/18/2024
3.1.26 15 07/09/2022
3.1.25 12 06/03/2024
3.1.24 225 05/14/2022
3.1.20 10 06/03/2024
3.1.18 10 06/03/2024
3.1.13 10 05/08/2022
3.1.11 9 06/03/2024
3.0.0-preview3.19153.1 9 06/03/2024
3.0.0-preview.19074.2 6 06/03/2024
2.2.0-preview2-35157 7 06/03/2024
1.1.0-preview1-final 6 06/03/2024
1.0.0-rc2-final 9 06/03/2024