Microsoft.Extensions.Configuration.Json 9.0.13

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.
149
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
145
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
140
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.
135
R4Mvc.Tools
R4Mvc is a tool that generates strongly typed helpers for ASP.NET Core MVC.
134
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
134
R4Mvc.Tools
R4Mvc is a tool that generates strongly typed helpers for ASP.NET Core MVC.
133
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
131
R4Mvc.Tools
R4Mvc is a tool that generates strongly typed helpers for ASP.NET Core MVC.
130
R4Mvc.Tools
R4Mvc is a tool that generates strongly typed helpers for ASP.NET Core MVC.
128
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
125
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
124
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
123
R4Mvc.Tools
R4Mvc is a tool that generates strongly typed helpers for ASP.NET Core MVC.
121
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
121

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