Microsoft.Extensions.Configuration.Xml 9.0.15

About

XML configuration provider implementation for Microsoft.Extensions.Configuration. This package enables you to read configuration parameters from XML files. You can use XmlConfigurationExtensions.AddXmlFile extension method on IConfigurationBuilder to add XML configuration provider to the configuration builder.

How to Use

The following example shows how to read the application configuration from XML file.

using System;
using Microsoft.Extensions.Configuration;

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

        // Get a configuration section
        IConfigurationSection section = config.GetSection("Settings");

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

        // Read nested values
        Console.WriteLine($"IPAddress: {section["Endpoint:IPAddress"]}");
        Console.WriteLine($"Port: {section["Endpoint:Port"]}");
    }
}

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

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <Settings>
    <Server>example.com</Server>
    <Database>Northwind</Database>
    <Endpoint>
      <IPAddress>192.168.0.10</IPAddress>
      <Port>80</Port>
    </Endpoint>
  </Settings>  
</configuration>

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

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

Additional Documentation

Feedback & Contributing

Microsoft.Extensions.Configuration.Xml 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.Xml.

Packages Downloads
Microsoft.AspNetCore.All
Microsoft.AspNetCore.All
24
Microsoft.AspNetCore.All
Microsoft.AspNetCore.All
25
Microsoft.AspNetCore.All
Microsoft.AspNetCore.All
26
Microsoft.AspNetCore.All
Microsoft.AspNetCore.All
27
Microsoft.AspNetCore.All
Microsoft.AspNetCore.All
28
Microsoft.AspNetCore.All
Microsoft.AspNetCore.All
30
Microsoft.AspNetCore.All
Provides a default set of APIs for building an ASP.NET Core application, and also includes API for third-party integrations with ASP.NET Core. This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download.
24
Microsoft.AspNetCore.All
Provides a default set of APIs for building an ASP.NET Core application, and also includes API for third-party integrations with ASP.NET Core. This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download.
25
Microsoft.AspNetCore.All
Provides a default set of APIs for building an ASP.NET Core application, and also includes API for third-party integrations with ASP.NET Core. This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download.
26

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

Version Downloads Last updated
11.0.0-preview.3.26207.106 2 05/03/2026
11.0.0-preview.2.26159.112 5 03/13/2026
11.0.0-preview.1.26104.118 5 02/14/2026
10.0.7 1 05/01/2026
10.0.6 1 05/01/2026
10.0.5 5 03/13/2026
10.0.4 5 03/13/2026
10.0.3 6 02/14/2026
10.0.2 7 01/16/2026
10.0.1 8 12/11/2025
10.0.0 10 11/12/2025
10.0.0-rc.2.25502.107 12 10/17/2025
10.0.0-rc.1.25451.107 13 09/11/2025
10.0.0-preview.7.25380.108 16 08/14/2025
10.0.0-preview.6.25358.103 17 07/26/2025
10.0.0-preview.5.25277.114 16 06/11/2025
10.0.0-preview.4.25258.110 15 06/03/2025
10.0.0-preview.3.25171.5 17 05/06/2025
10.0.0-preview.2.25163.2 17 04/02/2025
10.0.0-preview.1.25080.5 21 03/06/2025
9.0.15 1 05/01/2026
9.0.14 6 03/13/2026
9.0.13 7 02/14/2026
9.0.12 9 01/16/2026
9.0.11 10 11/12/2025
9.0.10 11 10/17/2025
9.0.9 13 09/11/2025
9.0.8 16 08/07/2025
9.0.7 14 07/09/2025
9.0.6 16 06/11/2025
9.0.5 16 06/11/2025
9.0.4 18 05/06/2025
9.0.3 17 03/14/2025
9.0.2 16 02/20/2025
9.0.1 15 02/20/2025
9.0.0 17 01/23/2025
9.0.0-rc.2.24473.5 17 12/29/2024
9.0.0-rc.1.24431.7 17 10/05/2024
9.0.0-preview.7.24405.7 17 10/05/2024
9.0.0-preview.6.24327.7 18 10/05/2024
9.0.0-preview.5.24306.7 16 10/05/2024
9.0.0-preview.4.24266.19 16 03/06/2025
9.0.0-preview.3.24172.9 16 10/05/2024
9.0.0-preview.2.24128.5 21 03/26/2024
9.0.0-preview.1.24080.9 19 03/05/2024
8.0.1 16 01/23/2025
8.0.0 21 11/23/2023
8.0.0-rc.2.23479.6 20 03/02/2024
8.0.0-rc.1.23419.4 20 03/05/2024
8.0.0-preview.7.23375.6 18 03/05/2024
8.0.0-preview.6.23329.7 19 03/05/2024
8.0.0-preview.5.23280.8 20 03/05/2024
8.0.0-preview.4.23259.5 19 03/02/2024
8.0.0-preview.3.23174.8 16 10/05/2024
8.0.0-preview.2.23128.3 21 03/05/2024
8.0.0-preview.1.23110.8 20 03/05/2024
7.0.0 19 03/01/2024
7.0.0-rc.2.22472.3 22 03/05/2024
7.0.0-rc.1.22426.10 20 03/05/2024
7.0.0-preview.7.22375.6 19 03/03/2024
7.0.0-preview.6.22324.4 20 03/04/2024
7.0.0-preview.5.22301.12 20 03/03/2024
7.0.0-preview.4.22229.4 18 03/05/2024
7.0.0-preview.3.22175.4 17 10/05/2024
7.0.0-preview.2.22152.2 19 03/05/2024
7.0.0-preview.1.22076.8 21 03/05/2024
6.0.1 17 01/23/2025
6.0.0 19 03/22/2024
6.0.0-rc.2.21480.5 20 03/05/2024
6.0.0-rc.1.21451.13 21 03/05/2024
6.0.0-preview.7.21377.19 17 03/05/2024
6.0.0-preview.6.21352.12 20 03/05/2024
6.0.0-preview.5.21301.5 23 03/05/2024
6.0.0-preview.4.21253.7 20 03/02/2024
6.0.0-preview.3.21201.4 20 03/05/2024
6.0.0-preview.2.21154.6 20 03/05/2024
6.0.0-preview.1.21102.12 20 03/05/2024
5.0.0 22 03/24/2024
5.0.0-rc.2.20475.5 21 03/05/2024
5.0.0-rc.1.20451.14 21 03/05/2024
5.0.0-preview.8.20407.11 19 03/05/2024
5.0.0-preview.7.20364.11 20 03/05/2024
5.0.0-preview.6.20305.6 19 03/05/2024
5.0.0-preview.5.20278.1 19 03/03/2024
5.0.0-preview.4.20251.6 20 03/05/2024
5.0.0-preview.3.20215.2 20 03/22/2024
5.0.0-preview.2.20160.3 19 03/05/2024
5.0.0-preview.1.20120.4 19 03/02/2024
3.1.32 21 03/01/2024
3.1.31 22 03/01/2024
3.1.30 21 03/03/2024
3.1.29 22 03/01/2024
3.1.28 22 03/01/2024
3.1.27 19 03/01/2024
3.1.26 25 03/01/2024
3.1.25 22 03/01/2024
3.1.24 20 03/04/2024
3.1.23 19 03/01/2024
3.1.22 20 03/03/2024
3.1.21 19 03/01/2024
3.1.20 20 03/02/2024
3.1.19 26 03/01/2024
3.1.18 19 03/02/2024
3.1.17 20 03/22/2024
3.1.16 22 03/01/2024
3.1.15 20 03/04/2024
3.1.14 24 03/01/2024
3.1.13 19 03/04/2024
3.1.12 19 03/01/2024
3.1.11 21 03/02/2024
3.1.10 20 03/01/2024
3.1.9 19 03/04/2024
3.1.8 18 03/04/2024
3.1.7 19 03/04/2024
3.1.6 19 03/01/2024
3.1.5 19 03/04/2024
3.1.4 23 03/03/2024
3.1.3 19 01/13/2024
3.1.2 19 03/01/2024
3.1.1 19 11/25/2023
3.1.0 19 03/01/2024
3.1.0-preview3.19553.2 18 03/04/2024
3.1.0-preview2.19525.4 18 03/05/2024
3.1.0-preview1.19506.1 19 03/05/2024
3.0.3 18 11/25/2023
3.0.2 19 03/26/2024
3.0.1 19 03/03/2024
3.0.0 18 03/16/2024
3.0.0-rc1.19456.10 19 03/04/2024
3.0.0-preview9.19423.4 16 10/05/2024
3.0.0-preview8.19405.4 21 03/05/2024
3.0.0-preview7.19362.4 20 03/05/2024
3.0.0-preview6.19304.6 20 03/05/2024
3.0.0-preview5.19227.9 18 03/05/2024
3.0.0-preview4.19216.2 21 03/05/2024
3.0.0-preview3.19153.1 19 03/04/2024
3.0.0-preview.19074.2 18 03/05/2024
3.0.0-preview.18572.1 17 03/05/2024
2.2.0 20 03/01/2024
2.2.0-preview3-35497 18 03/03/2024
2.2.0-preview2-35157 18 11/25/2023
2.2.0-preview1-35029 19 03/05/2024
2.1.1 21 03/04/2024
2.1.0 20 03/02/2024
2.1.0-rc1-final 20 03/03/2024
2.1.0-preview2-final 19 03/05/2024
2.1.0-preview1-final 21 03/05/2024
2.0.2 20 03/12/2024
2.0.1 23 03/01/2024
2.0.0 18 11/25/2023
2.0.0-preview2-final 21 03/03/2024
2.0.0-preview1-final 22 03/05/2024
1.1.2 18 03/04/2024
1.1.1 19 03/02/2024
1.1.0 21 03/05/2024
1.1.0-preview1-final 18 10/05/2024
1.0.2 18 03/12/2024
1.0.1 20 03/02/2024
1.0.0 19 03/12/2024
1.0.0-rc2-final 17 10/05/2024
1.0.0-rc1-final 23 03/02/2024