Microsoft.Extensions.Configuration.Xml 10.0.0-preview.6.25358.103

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
Google.Ads.Common
This library provides you with common functionality to access Google's Ads APIs.
30
Google.Ads.Common
This library provides you with common functionality to access Google's Ads APIs.
49
Microsoft.AspNetCore.All
Microsoft.AspNetCore.All
21
Microsoft.AspNetCore.All
Microsoft.AspNetCore.All
22
Microsoft.AspNetCore.All
Microsoft.AspNetCore.All
23
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.
20
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.
21
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.
22
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.
23
Microsoft.AspNetCore.App
Microsoft.AspNetCore.App
21
Microsoft.AspNetCore.App
Provides a default set of API for building an ASP.NET Core application. 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. This package was built from the source at: https://github.com/aspnet/Universe/tree/c0686cbb3c353de256da1db32829d58143b567f5
26
Microsoft.AspNetCore.App
Provides a default set of APIs for building an ASP.NET Core application. 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.
20
Microsoft.AspNetCore.App
Provides a default set of APIs for building an ASP.NET Core application. 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.
21
Microsoft.AspNetCore.App
Provides a default set of APIs for building an ASP.NET Core application. 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.App
Provides a default set of APIs for building an ASP.NET Core application. 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.
28

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

.NET Framework 4.6.2

.NET Standard 2.0

.NET 10.0

.NET 9.0

.NET 8.0

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