Microsoft.Extensions.Configuration.Abstractions 8.0.0-preview.4.23259.5

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.

Commonly used types:

For more information, see the documentation: Configuration in .NET.

Example

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"

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

Packages Downloads
Talk.Extensions
Talk扩展
100
Talk.Extensions
Talk扩展
91
Talk.Extensions
Talk扩展
89
Talk.Extensions
Talk扩展
88
Talk.Extensions
Talk扩展
86
Talk.Extensions
Talk扩展
82
Talk.Extensions
Talk扩展
77
Microsoft.Extensions.Hosting.Abstractions
Hosting and startup abstractions for applications.
75
Talk.Extensions
Talk扩展
73
Talk.Extensions
Talk扩展
72
Talk.Extensions
Talk扩展
70
Talk.Extensions
Talk扩展
66
Talk.Extensions
Talk扩展
65
Talk.Extensions
Talk扩展
63
Microsoft.Extensions.Configuration
Implementation of key-value pair based configuration for Microsoft.Extensions.Configuration. Includes the memory configuration provider.
61
Talk.Extensions
Talk扩展
60
Microsoft.Identity.Client.Extensions.Msal
This package contains extensions to Microsoft Authentication Library for .NET (MSAL.NET)
60
Talk.Extensions
Talk扩展
58

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
8.0.0-preview.4.23259.5 84 7/7/2023
7.0.0 115 2/28/2023
7.0.0-preview.5.22301.12 65 7/3/2023
7.0.0-preview.4.22229.4 58 7/9/2023
6.0.0 63 2/28/2023
6.0.0-preview.6.21352.12 66 7/8/2023
6.0.0-preview.1.21102.12 32 7/12/2023
5.0.0 44 7/4/2023
5.0.0-rc.2.20475.5 45 7/12/2023
5.0.0-preview.4.20251.6 45 7/4/2023
3.1.32 59 7/5/2023
3.1.29 69 7/3/2023
3.1.27 55 7/3/2023
3.1.17 16 5/4/2023
3.1.15 78 7/14/2023
3.1.10 28 4/20/2023
3.1.9 49 7/12/2023
3.1.8 75 3/16/2023
3.1.4 68 7/3/2023
3.1.0 45 3/21/2023
3.0.2 89 7/6/2023
3.0.0-preview9.19423.4 41 6/28/2023
3.0.0-preview7.19362.4 78 7/7/2023
2.2.0 45 3/16/2023
2.1.0 47 7/5/2023
2.1.0-preview2-final 60 7/10/2023
2.0.2 55 7/2/2023
2.0.0 71 3/16/2023
1.1.2 51 7/8/2023
1.1.0 66 7/9/2023
1.1.0-preview1-final 86 7/8/2023
1.0.0 50 7/8/2023