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