Microsoft.Extensions.Configuration.Json 10.0.0-preview.3.25171.5

About

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.

How to Use

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

using System;
using Microsoft.Extensions.Configuration;

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

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

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

        // Read a collection
        Console.WriteLine("Ports: ");
        IConfigurationSection ports = section.GetSection("Ports");

        foreach (IConfigurationSection child in ports.GetChildren())
        {
            Console.WriteLine(child.Value);
        }
    }
}

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

{
  "Settings": {
    "Server": "example.com",
    "Database": "Northwind",
    "Ports": [ 80, 81 ]
  }
}

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>

Additional Documentation

Feedback & Contributing

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

Packages Downloads
R4Mvc.Tools
R4Mvc is a tool that generates strongly typed helpers for ASP.NET Core MVC.
83
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
73
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
68
R4Mvc.Tools
R4Mvc is a tool that generates strongly typed helpers for ASP.NET Core MVC.
68
R4Mvc.Tools
R4Mvc is a tool that generates strongly typed helpers for ASP.NET Core MVC.
67
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
67
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
66
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
65
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
64
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
63
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
62
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
60
R4Mvc.Tools
R4Mvc is a tool that generates strongly typed helpers for ASP.NET Core MVC.
60
R4Mvc.Tools
R4Mvc is a tool that generates strongly typed helpers for ASP.NET Core MVC.
59
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
59

.NET Framework 4.6.2

.NET 8.0

.NET 9.0

.NET 10.0

.NET Standard 2.0

.NET Standard 2.1

Version Downloads Last updated
10.0.0-preview.3.25171.5 4 4/14/2025
10.0.0-preview.2.25163.2 14 3/19/2025
10.0.0-preview.1.25080.5 11 2/26/2025
9.0.4 7 4/9/2025
9.0.3 8 3/12/2025
9.0.2 16 2/19/2025
9.0.1 26 1/23/2025
9.0.0 21 11/13/2024
9.0.0-rc.2.24473.5 20 10/15/2024
9.0.0-rc.1.24431.7 22 9/12/2024
9.0.0-preview.7.24405.7 30 8/13/2024
9.0.0-preview.6.24327.7 32 7/10/2024
9.0.0-preview.5.24306.7 24 6/14/2024
9.0.0-preview.4.24266.19 25 5/24/2024
9.0.0-preview.3.24172.9 29 4/13/2024
9.0.0-preview.2.24128.5 30 3/14/2024
9.0.0-preview.1.24080.9 32 2/27/2024
8.0.1 22 10/22/2024
8.0.0 43 11/16/2023
8.0.0-rc.2.23479.6 41 10/17/2023
8.0.0-rc.1.23419.4 52 9/18/2023
8.0.0-preview.7.23375.6 40 8/23/2023
8.0.0-preview.6.23329.7 43 7/31/2023
8.0.0-preview.5.23280.8 57 7/31/2023
8.0.0-preview.4.23259.5 41 7/16/2023
8.0.0-preview.3.23174.8 39 5/14/2023
8.0.0-preview.2.23128.3 35 5/14/2023
8.0.0-preview.1.23110.8 56 2/24/2023
7.0.0 45 12/3/2022
7.0.0-rc.2.22472.3 43 12/3/2022
7.0.0-rc.1.22426.10 43 9/16/2022
7.0.0-preview.7.22375.6 40 5/14/2023
7.0.0-preview.6.22324.4 47 8/5/2022
7.0.0-preview.5.22301.12 60 6/27/2022
7.0.0-preview.4.22229.4 45 6/27/2022
7.0.0-preview.3.22175.4 56 6/27/2022
7.0.0-preview.2.22152.2 58 6/27/2022
7.0.0-preview.1.22076.8 48 6/27/2022
6.0.2-mauipre.1.22102.15 48 6/27/2022
6.0.2-mauipre.1.22054.8 53 6/27/2022
6.0.1 18 11/13/2024
6.0.0 43 6/27/2022
6.0.0-rc.2.21480.5 39 6/27/2022
6.0.0-rc.1.21451.13 61 6/27/2022
6.0.0-preview.7.21377.19 43 6/27/2022
6.0.0-preview.6.21352.12 41 6/27/2022
6.0.0-preview.5.21301.5 60 6/27/2022
6.0.0-preview.4.21253.7 55 6/27/2022
6.0.0-preview.3.21201.4 50 6/27/2022
6.0.0-preview.2.21154.6 44 6/27/2022
6.0.0-preview.1.21102.12 58 6/27/2022
5.0.0 52 6/27/2022
5.0.0-rc.2.20475.5 50 6/27/2022
5.0.0-rc.1.20451.14 49 6/27/2022
5.0.0-preview.8.20407.11 43 6/27/2022
5.0.0-preview.7.20364.11 50 6/27/2022
5.0.0-preview.6.20305.6 51 6/27/2022
5.0.0-preview.5.20278.1 54 6/27/2022
5.0.0-preview.4.20251.6 41 6/27/2022
5.0.0-preview.3.20215.2 44 6/27/2022
5.0.0-preview.2.20160.3 47 6/26/2022
5.0.0-preview.1.20120.4 46 6/26/2022
3.1.32 50 2/21/2023
3.1.31 45 12/3/2022
3.1.30 42 12/3/2022
3.1.29 49 2/14/2023
3.1.28 41 8/30/2022
3.1.27 41 5/14/2023
3.1.26 48 6/27/2022
3.1.25 54 6/27/2022
3.1.24 44 6/27/2022
3.1.23 39 6/27/2022
3.1.22 50 6/27/2022
3.1.21 42 6/27/2022
3.1.20 48 6/27/2022
3.1.19 47 6/27/2022
3.1.18 44 6/27/2022
3.1.17 48 6/27/2022
3.1.16 44 6/27/2022
3.1.15 50 6/27/2022
3.1.14 46 6/27/2022
3.1.13 48 6/27/2022
3.1.12 45 6/27/2022
3.1.11 59 6/27/2022
3.1.10 58 6/27/2022
3.1.9 42 6/27/2022
3.1.8 55 6/27/2022
3.1.7 42 6/27/2022
3.1.6 49 6/27/2022
3.1.5 42 6/27/2022
3.1.4 48 6/27/2022
3.1.3 45 6/27/2022
3.1.2 41 6/27/2022
3.1.1 57 6/27/2022
3.1.0 52 6/27/2022
3.1.0-preview3.19553.2 50 6/27/2022
3.1.0-preview2.19525.4 51 6/27/2022
3.1.0-preview1.19506.1 43 6/27/2022
3.0.3 58 6/27/2022
3.0.2 53 6/27/2022
3.0.1 56 6/27/2022
3.0.0 46 6/27/2022
3.0.0-rc1.19456.10 50 6/27/2022
3.0.0-preview9.19423.4 58 6/27/2022
3.0.0-preview8.19405.4 47 6/27/2022
3.0.0-preview7.19362.4 43 6/27/2022
3.0.0-preview6.19304.6 46 6/27/2022
3.0.0-preview5.19227.9 56 6/27/2022
3.0.0-preview4.19216.2 46 6/27/2022
3.0.0-preview3.19153.1 55 6/27/2022
3.0.0-preview.19074.2 44 6/27/2022
3.0.0-preview.18572.1 50 6/27/2022
2.2.0 58 6/27/2022
2.2.0-preview3-35497 59 6/27/2022
2.2.0-preview2-35157 43 6/27/2022
2.2.0-preview1-35029 55 6/27/2022
2.1.1 53 6/27/2022
2.1.0 61 6/27/2022
2.1.0-rc1-final 50 6/27/2022
2.1.0-preview2-final 50 6/27/2022
2.1.0-preview1-final 61 6/27/2022
2.0.2 47 6/27/2022
2.0.1 52 6/27/2022
2.0.0 52 6/27/2022
2.0.0-preview2-final 60 6/27/2022
2.0.0-preview1-final 55 6/27/2022
1.1.2 48 6/13/2022
1.1.1 47 6/27/2022
1.1.0 52 6/27/2022
1.1.0-preview1-final 46 6/27/2022
1.0.2 44 6/27/2022
1.0.1 51 6/27/2022
1.0.0 47 6/27/2022
1.0.0-rc2-final 42 6/27/2022
1.0.0-rc1-final 62 6/27/2022