Microsoft.Extensions.Configuration.Binder 10.0.0-preview.2.25163.2

Prefix Reserved
This is a prerelease version of Microsoft.Extensions.Configuration.Binder.
dotnet add package Microsoft.Extensions.Configuration.Binder --version 10.0.0-preview.2.25163.2
                    
NuGet\Install-Package Microsoft.Extensions.Configuration.Binder -Version 10.0.0-preview.2.25163.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="Microsoft.Extensions.Configuration.Binder" Version="10.0.0-preview.2.25163.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Microsoft.Extensions.Configuration.Binder" Version="10.0.0-preview.2.25163.2" />
                    
Directory.Packages.props
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Microsoft.Extensions.Configuration.Binder --version 10.0.0-preview.2.25163.2
                    
#r "nuget: Microsoft.Extensions.Configuration.Binder, 10.0.0-preview.2.25163.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.
#addin nuget:?package=Microsoft.Extensions.Configuration.Binder&version=10.0.0-preview.2.25163.2&prerelease
                    
Install Microsoft.Extensions.Configuration.Binder as a Cake Addin
#tool nuget:?package=Microsoft.Extensions.Configuration.Binder&version=10.0.0-preview.2.25163.2&prerelease
                    
Install Microsoft.Extensions.Configuration.Binder as a Cake Tool

About

Provides the functionality to bind an object to data in configuration providers for Microsoft.Extensions.Configuration. This package enables you to represent the configuration data as strongly-typed classes defined in the application code. To bind a configuration, use the Microsoft.Extensions.Configuration.ConfigurationBinder.Get extension method on the IConfiguration object. To use this package, you also need to install a package for the configuration provider, for example, Microsoft.Extensions.Configuration.Json for the JSON provider.

The types contained in this assembly use Reflection at runtime which is not friendly with linking or AOT. To better support linking and AOT as well as provide more efficient strongly-typed binding methods - this package also provides a source generator. This generator is enabled by default when a project sets PublishAot but can also be enabled using <EnableConfigurationBindingGenerator>true</EnableConfigurationBindingGenerator>.

Key Features

  • Configuring existing type instances from a configuration section (Bind)
  • Constructing new configured type instances from a configuration section (Get & GetValue)
  • Generating source to bind objects from a configuration section without a runtime reflection dependency.

How to Use

The following example shows how to bind a JSON configuration section to .NET objects.

using System;
using Microsoft.Extensions.Configuration;

class Settings
{
    public string Server { get; set; }
    public string Database { get; set; }
    public Endpoint[] Endpoints { get; set; }
}

class Endpoint
{
    public string IPAddress { get; set; }
    public int Port { get; set; }
}

class Program
{
    static void Main()
    {
        // Build a configuration object from JSON file
        IConfiguration config = new ConfigurationBuilder()
            .AddJsonFile("appsettings.json")
            .Build();

        // Bind a configuration section to an instance of Settings class
        Settings settings = config.GetSection("Settings").Get<Settings>();

        // Read simple values
        Console.WriteLine($"Server: {settings.Server}");
        Console.WriteLine($"Database: {settings.Database}");

        // Read nested objects
        Console.WriteLine("Endpoints: ");

        foreach (Endpoint endpoint in settings.Endpoints)
        {
            Console.WriteLine($"{endpoint.IPAddress}:{endpoint.Port}");
        }
    }
}

To run this example, include an appsettings.json file with the following content in your project:

{
  "Settings": {
    "Server": "example.com",
    "Database": "Northwind",
    "Endpoints": [
      {
        "IPAddress": "192.168.0.1",
        "Port": "80"
      },
      {
        "IPAddress": "192.168.10.1",
        "Port": "8080"
      }
    ]
  }
}

You can include a configuration file using a code like this in your .csproj file:

<ItemGroup>
  <Content Include="appsettings.json">
    <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  </Content>
</ItemGroup>

You can add the following property to enable the source generator. This requires a .NET 8.0 SDK or later.

<PropertyGroup>
  <EnableConfigurationBindingGenerator>true</EnableConfigurationBindingGenerator>
</PropertyGroup>

Main Types

The main types provided by this library are:

  • Microsoft.Extensions.Configuration.ConfigurationBinder
  • Microsoft.Extensions.Configuration.BinderOptions

Additional Documentation

Feedback & Contributing

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

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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 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.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible. 
.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 is compatible.  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 (4.5K)

Showing the top 5 NuGet packages that depend on Microsoft.Extensions.Configuration.Binder:

Package Downloads
Microsoft.Extensions.Options.ConfigurationExtensions

Provides additional configuration specific functionality related to Options.

Microsoft.Extensions.Logging.Configuration

Configuration support for Microsoft.Extensions.Logging.

Microsoft.Extensions.Hosting

Hosting and startup infrastructures for applications.

Serilog.Settings.Configuration

Microsoft.Extensions.Configuration (appsettings.json) support for Serilog.

Microsoft.AspNetCore.Server.Kestrel.Core

Core components of ASP.NET Core Kestrel cross-platform web server.

GitHub repositories (366)

Showing the top 5 popular GitHub repositories that depend on Microsoft.Extensions.Configuration.Binder:

Repository Stars
jellyfin/jellyfin
The Free Software Media System - Server Backend & API
microsoft/semantic-kernel
Integrate cutting-edge LLM technology quickly and easily into your apps
abpframework/abp
Open-source web application framework for ASP.NET Core! Offers an opinionated architecture to build enterprise software solutions with best practices on top of the .NET. Provides the fundamental infrastructure, cross-cutting-concern implementations, startup templates, application modules, UI themes, tooling and documentation.
microsoft/garnet
Garnet is a remote cache-store from Microsoft Research that offers strong performance (throughput and latency), scalability, storage, recovery, cluster sharding, key migration, and replication features. Garnet can work with existing Redis clients.
chocolatey/choco
Chocolatey - the package manager for Windows
Version Downloads Last updated
10.0.0-preview.2.25163.2 6,894 3/18/2025
10.0.0-preview.1.25080.5 18,351 2/25/2025
9.0.3 2,057,978 3/11/2025
9.0.2 5,142,860 2/11/2025
9.0.1 6,363,345 1/14/2025
9.0.0 25,333,348 11/12/2024
9.0.0-rc.2.24473.5 409,975 10/8/2024
9.0.0-rc.1.24431.7 293,265 9/10/2024
9.0.0-preview.7.24405.7 101,355 8/13/2024
9.0.0-preview.6.24327.7 160,203 7/9/2024
9.0.0-preview.5.24306.7 108,348 6/11/2024
9.0.0-preview.4.24266.19 76,089 5/21/2024
9.0.0-preview.3.24172.9 189,292 4/11/2024
9.0.0-preview.2.24128.5 102,544 3/12/2024
9.0.0-preview.1.24080.9 110,628 2/13/2024
8.0.2 59,596,558 7/9/2024
8.0.1 71,260,110 1/9/2024
8.0.0 227,624,185 11/14/2023
8.0.0-rc.2.23479.6 1,387,645 10/10/2023
8.0.0-rc.1.23419.4 508,346 9/12/2023
8.0.0-preview.7.23375.6 527,611 8/8/2023
8.0.0-preview.6.23329.7 193,193 7/11/2023
8.0.0-preview.5.23280.8 116,679 6/13/2023
8.0.0-preview.4.23259.5 320,884 5/16/2023
8.0.0-preview.3.23174.8 203,169 4/11/2023
8.0.0-preview.2.23128.3 96,839 3/14/2023
8.0.0-preview.1.23110.8 138,778 2/21/2023
7.0.4 45,229,525 3/14/2023
7.0.3 53,359,829 2/14/2023
7.0.2 6,733,420 1/10/2023
7.0.1 4,015,940 12/13/2022
7.0.0 116,804,873 11/7/2022
7.0.0-rc.2.22472.3 267,133 10/11/2022
7.0.0-rc.1.22426.10 184,203 9/14/2022
7.0.0-preview.7.22375.6 211,106 8/9/2022
7.0.0-preview.6.22324.4 98,327 7/12/2022
7.0.0-preview.5.22301.12 63,306 6/14/2022
7.0.0-preview.4.22229.4 81,239 5/10/2022
7.0.0-preview.3.22175.4 80,943 4/13/2022
7.0.0-preview.2.22152.2 41,614 3/14/2022
7.0.0-preview.1.22076.8 54,851 2/17/2022
6.0.1 712,038 11/12/2024
6.0.0 366,689,142 11/8/2021
6.0.0-rc.2.21480.5 600,561 10/12/2021
6.0.0-rc.1.21451.13 362,420 9/14/2021
6.0.0-preview.7.21377.19 248,219 8/10/2021
6.0.0-preview.6.21352.12 117,136 7/14/2021
6.0.0-preview.5.21301.5 67,749 6/15/2021
6.0.0-preview.4.21253.7 62,113 5/24/2021
6.0.0-preview.3.21201.4 202,348 4/8/2021
6.0.0-preview.2.21154.6 111,813 3/11/2021 6.0.0-preview.2.21154.6 is deprecated because it is no longer maintained.
6.0.0-preview.1.21102.12 121,198 2/12/2021 6.0.0-preview.1.21102.12 is deprecated because it is no longer maintained.
5.0.0 222,837,824 11/9/2020 5.0.0 is deprecated because it is no longer maintained.
5.0.0-rc.2.20475.5 279,346 10/13/2020 5.0.0-rc.2.20475.5 is deprecated because it is no longer maintained.
5.0.0-rc.1.20451.14 333,861 9/14/2020 5.0.0-rc.1.20451.14 is deprecated because it is no longer maintained.
5.0.0-preview.8.20407.11 342,313 8/25/2020 5.0.0-preview.8.20407.11 is deprecated because it is no longer maintained.
5.0.0-preview.7.20364.11 71,783 7/21/2020 5.0.0-preview.7.20364.11 is deprecated because it is no longer maintained.
5.0.0-preview.6.20305.6 55,551 6/25/2020 5.0.0-preview.6.20305.6 is deprecated because it is no longer maintained.
5.0.0-preview.5.20278.1 28,920 6/10/2020 5.0.0-preview.5.20278.1 is deprecated because it is no longer maintained.
5.0.0-preview.4.20251.6 56,269 5/18/2020 5.0.0-preview.4.20251.6 is deprecated because it is no longer maintained.
5.0.0-preview.3.20215.2 233,285 4/23/2020 5.0.0-preview.3.20215.2 is deprecated because it is no longer maintained.
5.0.0-preview.2.20160.3 229,147 4/2/2020 5.0.0-preview.2.20160.3 is deprecated because it is no longer maintained.
5.0.0-preview.1.20120.4 90,672 3/16/2020 5.0.0-preview.1.20120.4 is deprecated because it is no longer maintained.
3.1.32 14,610,328 12/13/2022
3.1.31 2,480,323 11/8/2022
3.1.30 2,647,084 10/11/2022
3.1.29 2,275,928 9/13/2022
3.1.28 2,787,068 8/9/2022
3.1.27 2,047,135 7/12/2022
3.1.26 1,814,785 6/14/2022
3.1.25 2,911,084 5/10/2022
3.1.24 2,039,950 4/11/2022
3.1.23 3,413,049 3/8/2022
3.1.22 18,420,590 12/14/2021
3.1.21 8,853,274 11/7/2021
3.1.20 4,359,488 10/11/2021
3.1.19 5,142,716 9/14/2021
3.1.18 43,547,908 8/10/2021
3.1.17 6,628,743 7/13/2021
3.1.16 10,340,198 6/8/2021
3.1.15 8,471,813 5/11/2021
3.1.14 16,671,085 4/6/2021
3.1.13 13,911,734 3/9/2021
3.1.12 11,112,400 2/9/2021
3.1.11 13,637,623 1/12/2021
3.1.10 23,967,869 11/9/2020
3.1.9 71,913,059 10/13/2020
3.1.8 66,321,960 9/8/2020
3.1.7 34,604,853 8/11/2020
3.1.6 39,048,345 7/14/2020
3.1.5 40,091,860 6/9/2020
3.1.4 44,564,264 5/12/2020
3.1.3 104,564,097 3/24/2020
3.1.2 75,054,846 2/18/2020
3.1.1 42,649,246 1/14/2020
3.1.0 189,364,515 12/3/2019
3.1.0-preview3.19553.2 221,105 11/13/2019 3.1.0-preview3.19553.2 is deprecated because it is no longer maintained.
3.1.0-preview2.19525.4 73,561 11/1/2019 3.1.0-preview2.19525.4 is deprecated because it is no longer maintained.
3.1.0-preview1.19506.1 1,186,133 10/15/2019 3.1.0-preview1.19506.1 is deprecated because it is no longer maintained.
3.0.3 76,240,638 2/18/2020 3.0.3 is deprecated because it is no longer maintained.
3.0.2 1,065,149 1/14/2020 3.0.2 is deprecated because it is no longer maintained.
3.0.1 6,217,329 11/18/2019 3.0.1 is deprecated because it is no longer maintained.
3.0.0 90,922,432 9/23/2019 3.0.0 is deprecated because it is no longer maintained.
3.0.0-rc1.19456.10 90,544 9/16/2019 3.0.0-rc1.19456.10 is deprecated because it is no longer maintained.
3.0.0-preview9.19423.4 1,481,831 9/4/2019 3.0.0-preview9.19423.4 is deprecated because it is no longer maintained.
3.0.0-preview8.19405.4 561,673 8/13/2019 3.0.0-preview8.19405.4 is deprecated because it is no longer maintained.
3.0.0-preview7.19362.4 217,193 7/23/2019 3.0.0-preview7.19362.4 is deprecated because it is no longer maintained.
3.0.0-preview6.19304.6 340,043 6/12/2019 3.0.0-preview6.19304.6 is deprecated because it is no longer maintained.
3.0.0-preview5.19227.9 806,947 5/6/2019 3.0.0-preview5.19227.9 is deprecated because it is no longer maintained.
3.0.0-preview4.19216.2 69,634 4/18/2019 3.0.0-preview4.19216.2 is deprecated because it is no longer maintained.
3.0.0-preview3.19153.1 337,222 3/6/2019 3.0.0-preview3.19153.1 is deprecated because it is no longer maintained.
3.0.0-preview.19074.2 176,980 1/29/2019 3.0.0-preview.19074.2 is deprecated because it is no longer maintained.
3.0.0-preview.18572.1 152,295 12/3/2018 3.0.0-preview.18572.1 is deprecated because it is no longer maintained.
2.2.4 32,213,282 4/9/2019 2.2.4 is deprecated because it is no longer maintained.
2.2.0 258,033,106 12/3/2018 2.2.0 is deprecated because it is no longer maintained.
2.2.0-preview3-35497 404,463 10/17/2018 2.2.0-preview3-35497 is deprecated because it is no longer maintained.
2.2.0-preview2-35157 283,087 9/12/2018 2.2.0-preview2-35157 is deprecated because it is no longer maintained.
2.2.0-preview1-35029 152,453 8/22/2018 2.2.0-preview1-35029 is deprecated because it is no longer maintained.
2.1.10 84,080,233 4/9/2019
2.1.1 380,611,283 6/18/2018
2.1.0 392,939,310 5/29/2018
2.1.0-rc1-final 562,597 5/6/2018 2.1.0-rc1-final is deprecated because it is no longer maintained.
2.1.0-preview2-final 625,274 4/10/2018 2.1.0-preview2-final is deprecated because it is no longer maintained.
2.1.0-preview1-final 629,720 2/26/2018 2.1.0-preview1-final is deprecated because it is no longer maintained.
2.0.2 7,920,872 5/7/2018 2.0.2 is deprecated because it is no longer maintained.
2.0.1 12,757,613 3/13/2018 2.0.1 is deprecated because it is no longer maintained.
2.0.0 383,559,045 8/11/2017 2.0.0 is deprecated because it is no longer maintained.
2.0.0-preview2-final 149,004 6/28/2017 2.0.0-preview2-final is deprecated because it is no longer maintained.
2.0.0-preview1-final 56,942 5/10/2017 2.0.0-preview1-final is deprecated because it is no longer maintained.
1.1.2 15,625,874 5/9/2017 1.1.2 is deprecated because it is no longer maintained.
1.1.1 4,313,329 3/6/2017 1.1.1 is deprecated because it is no longer maintained.
1.1.0 3,008,547 11/16/2016 1.1.0 is deprecated because it is no longer maintained.
1.1.0-preview1-final 17,188 10/24/2016 1.1.0-preview1-final is deprecated because it is no longer maintained.
1.0.2 2,749,477 3/6/2017 1.0.2 is deprecated because it is no longer maintained.
1.0.1 385,389 12/12/2016 1.0.1 is deprecated because it is no longer maintained.
1.0.0 3,588,371 6/27/2016 1.0.0 is deprecated because it is no longer maintained.
1.0.0-rc2-final 41,213 5/16/2016 1.0.0-rc2-final is deprecated because it is no longer maintained.
1.0.0-rc1-final 866,762 11/18/2015 1.0.0-rc1-final is deprecated because it is no longer maintained.