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.
152
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
147
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
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
137
R4Mvc.Tools
R4Mvc is a tool that generates strongly typed helpers for ASP.NET Core MVC.
137
R4Mvc.Tools
R4Mvc is a tool that generates strongly typed helpers for ASP.NET Core MVC.
136
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
136
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
133
R4Mvc.Tools
R4Mvc is a tool that generates strongly typed helpers for ASP.NET Core MVC.
133
R4Mvc.Tools
R4Mvc is a tool that generates strongly typed helpers for ASP.NET Core MVC.
132
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
126
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
125
R4Mvc.Tools
R4Mvc is a tool that generates strongly typed helpers for ASP.NET Core MVC.
123
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
123
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
122

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