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.
159
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
153
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
148
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
146
R4Mvc.Tools
R4Mvc is a tool that generates strongly typed helpers for ASP.NET Core MVC.
146
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
144
R4Mvc.Tools
R4Mvc is a tool that generates strongly typed helpers for ASP.NET Core MVC.
144
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
142
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
141
R4Mvc.Tools
R4Mvc is a tool that generates strongly typed helpers for ASP.NET Core MVC.
140
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
139
R4Mvc.Tools
R4Mvc is a tool that generates strongly typed helpers for ASP.NET Core MVC.
139
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
132
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
131
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
130
R4Mvc.Tools
R4Mvc is a tool that generates strongly typed helpers for ASP.NET Core MVC.
129

Version Downloads Last updated
11.0.0-preview.4.26230.115 9 5/13/2026
11.0.0-preview.3.26207.106 10 5/4/2026
11.0.0-preview.2.26159.112 10 3/12/2026
11.0.0-preview.1.26104.118 14 2/11/2026
10.0.8 10 5/13/2026
10.0.7 9 5/4/2026
10.0.6 9 5/4/2026
10.0.5 10 3/17/2026
10.0.4 8 3/12/2026
10.0.3 15 2/11/2026
10.0.2 15 1/19/2026
10.0.1 25 12/10/2025
10.0.0 46 11/13/2025
10.0.0-rc.2.25502.107 56 10/17/2025
10.0.0-rc.1.25451.107 62 9/10/2025
10.0.0-preview.7.25380.108 64 8/13/2025
10.0.0-preview.6.25358.103 77 7/20/2025
10.0.0-preview.5.25277.114 68 6/8/2025
10.0.0-preview.4.25258.110 66 5/22/2025
10.0.0-preview.3.25171.5 67 4/14/2025
10.0.0-preview.2.25163.2 94 3/19/2025
10.0.0-preview.1.25080.5 93 2/26/2025
9.0.16 9 5/13/2026
9.0.15 10 5/4/2026
9.0.14 10 3/12/2026
9.0.13 12 2/11/2026
9.0.12 18 1/20/2026
9.0.11 40 11/13/2025
9.0.10 52 10/17/2025
9.0.9 68 9/10/2025
9.0.8 66 8/6/2025
9.0.7 77 7/12/2025
9.0.6 64 6/19/2025
9.0.5 73 5/24/2025
9.0.4 88 4/9/2025
9.0.3 71 3/12/2025
9.0.2 80 2/19/2025
9.0.1 89 1/23/2025
9.0.0 89 11/13/2024
9.0.0-rc.2.24473.5 87 10/15/2024
9.0.0-rc.1.24431.7 80 9/12/2024
9.0.0-preview.7.24405.7 108 8/13/2024
9.0.0-preview.6.24327.7 101 7/10/2024
9.0.0-preview.5.24306.7 97 6/14/2024
9.0.0-preview.4.24266.19 96 5/24/2024
9.0.0-preview.3.24172.9 87 4/13/2024
9.0.0-preview.2.24128.5 98 3/14/2024
9.0.0-preview.1.24080.9 103 2/27/2024
8.0.1 79 10/22/2024
8.0.0 109 11/16/2023
8.0.0-rc.2.23479.6 110 10/17/2023
8.0.0-rc.1.23419.4 107 9/18/2023
8.0.0-preview.7.23375.6 111 8/23/2023
8.0.0-preview.6.23329.7 106 7/31/2023
8.0.0-preview.5.23280.8 132 7/31/2023
8.0.0-preview.4.23259.5 102 7/16/2023
8.0.0-preview.3.23174.8 109 5/14/2023
8.0.0-preview.2.23128.3 103 5/14/2023
8.0.0-preview.1.23110.8 120 2/24/2023
7.0.0 108 12/3/2022
7.0.0-rc.2.22472.3 104 12/3/2022
7.0.0-rc.1.22426.10 103 9/16/2022
7.0.0-preview.7.22375.6 103 5/14/2023
7.0.0-preview.6.22324.4 107 8/5/2022
7.0.0-preview.5.22301.12 131 6/27/2022
7.0.0-preview.4.22229.4 117 6/27/2022
7.0.0-preview.3.22175.4 122 6/27/2022
7.0.0-preview.2.22152.2 109 6/27/2022
7.0.0-preview.1.22076.8 109 6/27/2022
6.0.2-mauipre.1.22102.15 118 6/27/2022
6.0.2-mauipre.1.22054.8 120 6/27/2022
6.0.1 75 11/13/2024
6.0.0 109 6/27/2022
6.0.0-rc.2.21480.5 98 6/27/2022
6.0.0-rc.1.21451.13 126 6/27/2022
6.0.0-preview.7.21377.19 100 6/27/2022
6.0.0-preview.6.21352.12 110 6/27/2022
6.0.0-preview.5.21301.5 118 6/27/2022
6.0.0-preview.4.21253.7 126 6/27/2022
6.0.0-preview.3.21201.4 113 6/27/2022
6.0.0-preview.2.21154.6 105 6/27/2022
6.0.0-preview.1.21102.12 118 6/27/2022
5.0.0 119 6/27/2022
5.0.0-rc.2.20475.5 123 6/27/2022
5.0.0-rc.1.20451.14 119 6/27/2022
5.0.0-preview.8.20407.11 106 6/27/2022
5.0.0-preview.7.20364.11 112 6/27/2022
5.0.0-preview.6.20305.6 114 6/27/2022
5.0.0-preview.5.20278.1 121 6/27/2022
5.0.0-preview.4.20251.6 110 6/27/2022
5.0.0-preview.3.20215.2 112 6/27/2022
5.0.0-preview.2.20160.3 111 6/26/2022
5.0.0-preview.1.20120.4 106 6/26/2022
3.1.32 113 2/21/2023
3.1.31 107 12/3/2022
3.1.30 103 12/3/2022
3.1.29 125 2/14/2023
3.1.28 106 8/30/2022
3.1.27 99 5/14/2023
3.1.26 108 6/27/2022
3.1.25 128 6/27/2022
3.1.24 104 6/27/2022
3.1.23 109 6/27/2022
3.1.22 116 6/27/2022
3.1.21 106 6/27/2022
3.1.20 109 6/27/2022
3.1.19 118 6/27/2022
3.1.18 102 6/27/2022
3.1.17 118 6/27/2022
3.1.16 104 6/27/2022
3.1.15 115 6/27/2022
3.1.14 110 6/27/2022
3.1.13 105 6/27/2022
3.1.12 100 6/27/2022
3.1.11 123 6/27/2022
3.1.10 131 6/27/2022
3.1.9 104 6/27/2022
3.1.8 116 6/27/2022
3.1.7 101 6/27/2022
3.1.6 132 6/27/2022
3.1.5 103 6/27/2022
3.1.4 111 6/27/2022
3.1.3 114 6/27/2022
3.1.2 117 6/27/2022
3.1.1 126 6/27/2022
3.1.0 113 6/27/2022
3.1.0-preview3.19553.2 113 6/27/2022
3.1.0-preview2.19525.4 110 6/27/2022
3.1.0-preview1.19506.1 111 6/27/2022
3.0.3 132 6/27/2022
3.0.2 118 6/27/2022
3.0.1 128 6/27/2022
3.0.0 114 6/27/2022
3.0.0-rc1.19456.10 118 6/27/2022
3.0.0-preview9.19423.4 136 6/27/2022
3.0.0-preview8.19405.4 105 6/27/2022
3.0.0-preview7.19362.4 112 6/27/2022
3.0.0-preview6.19304.6 112 6/27/2022
3.0.0-preview5.19227.9 118 6/27/2022
3.0.0-preview4.19216.2 118 6/27/2022
3.0.0-preview3.19153.1 118 6/27/2022
3.0.0-preview.19074.2 112 6/27/2022
3.0.0-preview.18572.1 116 6/27/2022
2.2.0 120 6/27/2022
2.2.0-preview3-35497 125 6/27/2022
2.2.0-preview2-35157 109 6/27/2022
2.2.0-preview1-35029 123 6/27/2022
2.1.1 117 6/27/2022
2.1.0 126 6/27/2022
2.1.0-rc1-final 112 6/27/2022
2.1.0-preview2-final 117 6/27/2022
2.1.0-preview1-final 135 6/27/2022
2.0.2 108 6/27/2022
2.0.1 122 6/27/2022
2.0.0 109 6/27/2022
2.0.0-preview2-final 125 6/27/2022
2.0.0-preview1-final 129 6/27/2022
1.1.2 108 6/13/2022
1.1.1 107 6/27/2022
1.1.0 115 6/27/2022
1.1.0-preview1-final 114 6/27/2022
1.0.2 114 6/27/2022
1.0.1 122 6/27/2022
1.0.0 105 6/27/2022
1.0.0-rc2-final 96 6/27/2022
1.0.0-rc1-final 129 6/27/2022