Microsoft.Extensions.Configuration.Json 9.0.0

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.
130
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
128
R4Mvc.Tools
R4Mvc is a tool that generates strongly typed helpers for ASP.NET Core MVC.
120
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
119
R4Mvc.Tools
R4Mvc is a tool that generates strongly typed helpers for ASP.NET Core MVC.
118
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
117
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
115
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
114
R4Mvc.Tools
R4Mvc is a tool that generates strongly typed helpers for ASP.NET Core MVC.
113
R4Mvc.Tools
R4Mvc is a tool that generates strongly typed helpers for ASP.NET Core MVC.
110
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
109
R4Mvc.Tools
R4Mvc is a tool that generates strongly typed helpers for ASP.NET Core MVC.
106
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
106
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
105
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
104
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
103

Version Downloads Last updated
10.0.0 18 11/13/2025
10.0.0-rc.2.25502.107 27 10/17/2025
10.0.0-rc.1.25451.107 34 9/10/2025
10.0.0-preview.7.25380.108 40 8/13/2025
10.0.0-preview.6.25358.103 46 7/20/2025
10.0.0-preview.5.25277.114 40 6/8/2025
10.0.0-preview.4.25258.110 41 5/22/2025
10.0.0-preview.3.25171.5 41 4/14/2025
10.0.0-preview.2.25163.2 65 3/19/2025
10.0.0-preview.1.25080.5 58 2/26/2025
9.0.11 14 11/13/2025
9.0.10 22 10/17/2025
9.0.9 35 9/10/2025
9.0.8 39 8/6/2025
9.0.7 48 7/12/2025
9.0.6 36 6/19/2025
9.0.5 51 5/24/2025
9.0.4 60 4/9/2025
9.0.3 47 3/12/2025
9.0.2 53 2/19/2025
9.0.1 68 1/23/2025
9.0.0 66 11/13/2024
9.0.0-rc.2.24473.5 60 10/15/2024
9.0.0-rc.1.24431.7 54 9/12/2024
9.0.0-preview.7.24405.7 76 8/13/2024
9.0.0-preview.6.24327.7 73 7/10/2024
9.0.0-preview.5.24306.7 65 6/14/2024
9.0.0-preview.4.24266.19 66 5/24/2024
9.0.0-preview.3.24172.9 61 4/13/2024
9.0.0-preview.2.24128.5 73 3/14/2024
9.0.0-preview.1.24080.9 78 2/27/2024
8.0.1 55 10/22/2024
8.0.0 88 11/16/2023
8.0.0-rc.2.23479.6 82 10/17/2023
8.0.0-rc.1.23419.4 81 9/18/2023
8.0.0-preview.7.23375.6 81 8/23/2023
8.0.0-preview.6.23329.7 80 7/31/2023
8.0.0-preview.5.23280.8 101 7/31/2023
8.0.0-preview.4.23259.5 74 7/16/2023
8.0.0-preview.3.23174.8 83 5/14/2023
8.0.0-preview.2.23128.3 78 5/14/2023
8.0.0-preview.1.23110.8 90 2/24/2023
7.0.0 85 12/3/2022
7.0.0-rc.2.22472.3 82 12/3/2022
7.0.0-rc.1.22426.10 78 9/16/2022
7.0.0-preview.7.22375.6 78 5/14/2023
7.0.0-preview.6.22324.4 82 8/5/2022
7.0.0-preview.5.22301.12 102 6/27/2022
7.0.0-preview.4.22229.4 85 6/27/2022
7.0.0-preview.3.22175.4 93 6/27/2022
7.0.0-preview.2.22152.2 86 6/27/2022
7.0.0-preview.1.22076.8 83 6/27/2022
6.0.2-mauipre.1.22102.15 90 6/27/2022
6.0.2-mauipre.1.22054.8 95 6/27/2022
6.0.1 53 11/13/2024
6.0.0 83 6/27/2022
6.0.0-rc.2.21480.5 72 6/27/2022
6.0.0-rc.1.21451.13 98 6/27/2022
6.0.0-preview.7.21377.19 73 6/27/2022
6.0.0-preview.6.21352.12 85 6/27/2022
6.0.0-preview.5.21301.5 93 6/27/2022
6.0.0-preview.4.21253.7 93 6/27/2022
6.0.0-preview.3.21201.4 87 6/27/2022
6.0.0-preview.2.21154.6 75 6/27/2022
6.0.0-preview.1.21102.12 93 6/27/2022
5.0.0 94 6/27/2022
5.0.0-rc.2.20475.5 93 6/27/2022
5.0.0-rc.1.20451.14 91 6/27/2022
5.0.0-preview.8.20407.11 79 6/27/2022
5.0.0-preview.7.20364.11 87 6/27/2022
5.0.0-preview.6.20305.6 87 6/27/2022
5.0.0-preview.5.20278.1 99 6/27/2022
5.0.0-preview.4.20251.6 81 6/27/2022
5.0.0-preview.3.20215.2 88 6/27/2022
5.0.0-preview.2.20160.3 87 6/26/2022
5.0.0-preview.1.20120.4 77 6/26/2022
3.1.32 85 2/21/2023
3.1.31 78 12/3/2022
3.1.30 76 12/3/2022
3.1.29 100 2/14/2023
3.1.28 77 8/30/2022
3.1.27 70 5/14/2023
3.1.26 84 6/27/2022
3.1.25 103 6/27/2022
3.1.24 83 6/27/2022
3.1.23 78 6/27/2022
3.1.22 88 6/27/2022
3.1.21 81 6/27/2022
3.1.20 84 6/27/2022
3.1.19 89 6/27/2022
3.1.18 78 6/27/2022
3.1.17 92 6/27/2022
3.1.16 82 6/27/2022
3.1.15 87 6/27/2022
3.1.14 85 6/27/2022
3.1.13 79 6/27/2022
3.1.12 74 6/27/2022
3.1.11 92 6/27/2022
3.1.10 108 6/27/2022
3.1.9 79 6/27/2022
3.1.8 92 6/27/2022
3.1.7 74 6/27/2022
3.1.6 103 6/27/2022
3.1.5 76 6/27/2022
3.1.4 86 6/27/2022
3.1.3 94 6/27/2022
3.1.2 90 6/27/2022
3.1.1 96 6/27/2022
3.1.0 88 6/27/2022
3.1.0-preview3.19553.2 91 6/27/2022
3.1.0-preview2.19525.4 86 6/27/2022
3.1.0-preview1.19506.1 85 6/27/2022
3.0.3 104 6/27/2022
3.0.2 94 6/27/2022
3.0.1 96 6/27/2022
3.0.0 86 6/27/2022
3.0.0-rc1.19456.10 86 6/27/2022
3.0.0-preview9.19423.4 105 6/27/2022
3.0.0-preview8.19405.4 81 6/27/2022
3.0.0-preview7.19362.4 84 6/27/2022
3.0.0-preview6.19304.6 88 6/27/2022
3.0.0-preview5.19227.9 94 6/27/2022
3.0.0-preview4.19216.2 86 6/27/2022
3.0.0-preview3.19153.1 93 6/27/2022
3.0.0-preview.19074.2 85 6/27/2022
3.0.0-preview.18572.1 90 6/27/2022
2.2.0 94 6/27/2022
2.2.0-preview3-35497 101 6/27/2022
2.2.0-preview2-35157 83 6/27/2022
2.2.0-preview1-35029 93 6/27/2022
2.1.1 88 6/27/2022
2.1.0 100 6/27/2022
2.1.0-rc1-final 87 6/27/2022
2.1.0-preview2-final 89 6/27/2022
2.1.0-preview1-final 105 6/27/2022
2.0.2 81 6/27/2022
2.0.1 95 6/27/2022
2.0.0 83 6/27/2022
2.0.0-preview2-final 98 6/27/2022
2.0.0-preview1-final 103 6/27/2022
1.1.2 85 6/13/2022
1.1.1 85 6/27/2022
1.1.0 91 6/27/2022
1.1.0-preview1-final 85 6/27/2022
1.0.2 89 6/27/2022
1.0.1 97 6/27/2022
1.0.0 79 6/27/2022
1.0.0-rc2-final 69 6/27/2022
1.0.0-rc1-final 101 6/27/2022