Microsoft.Extensions.Configuration.Json 8.0.0-preview.4.23259.5

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.

For more information, see the documentation: JSON configuration provider.

Example

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>

Showing the top 20 packages that depend on Microsoft.Extensions.Configuration.Json.

Packages Downloads
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
54
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
50
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
49
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
48
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
47
R4Mvc.Tools
R4Mvc is a tool that generates strongly typed helpers for ASP.NET Core MVC.
46
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
46
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
45
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
43
R4Mvc.Tools
R4Mvc is a tool that generates strongly typed helpers for ASP.NET Core MVC.
42
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
42
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
41
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
40
Microsoft.AspNetCore.NodeServices
Invoke Node.js modules at runtime in ASP.NET Core applications.
39
R4Mvc.Tools
R4Mvc is a tool that generates strongly typed helpers for ASP.NET Core MVC.
39

.NET Framework 4.6.2

.NET Standard 2.1

.NET Standard 2.0

.NET 8.0

.NET 7.0

.NET 6.0

Version Downloads Last updated
9.0.0-rc.2.24473.5 4 10/15/2024
9.0.0-rc.1.24431.7 9 9/12/2024
9.0.0-preview.7.24405.7 16 8/13/2024
9.0.0-preview.6.24327.7 21 7/10/2024
9.0.0-preview.5.24306.7 12 6/14/2024
9.0.0-preview.4.24266.19 12 5/24/2024
9.0.0-preview.3.24172.9 16 4/13/2024
9.0.0-preview.2.24128.5 17 3/14/2024
9.0.0-preview.1.24080.9 20 2/27/2024
8.0.1 2 10/22/2024
8.0.0 27 11/16/2023
8.0.0-rc.2.23479.6 29 10/17/2023
8.0.0-rc.1.23419.4 28 9/18/2023
8.0.0-preview.7.23375.6 28 8/23/2023
8.0.0-preview.6.23329.7 30 7/31/2023
8.0.0-preview.5.23280.8 31 7/31/2023
8.0.0-preview.4.23259.5 24 7/16/2023
8.0.0-preview.3.23174.8 25 5/14/2023
8.0.0-preview.2.23128.3 23 5/14/2023
8.0.0-preview.1.23110.8 28 2/24/2023
7.0.0 34 12/3/2022
7.0.0-rc.2.22472.3 32 12/3/2022
7.0.0-rc.1.22426.10 29 9/16/2022
7.0.0-preview.7.22375.6 28 5/14/2023
7.0.0-preview.6.22324.4 35 8/5/2022
7.0.0-preview.5.22301.12 33 6/27/2022
7.0.0-preview.4.22229.4 32 6/27/2022
7.0.0-preview.3.22175.4 41 6/27/2022
7.0.0-preview.2.22152.2 39 6/27/2022
7.0.0-preview.1.22076.8 37 6/27/2022
6.0.2-mauipre.1.22102.15 34 6/27/2022
6.0.2-mauipre.1.22054.8 31 6/27/2022
6.0.0 31 6/27/2022
6.0.0-rc.2.21480.5 29 6/27/2022
6.0.0-rc.1.21451.13 41 6/27/2022
6.0.0-preview.7.21377.19 31 6/27/2022
6.0.0-preview.6.21352.12 31 6/27/2022
6.0.0-preview.5.21301.5 39 6/27/2022
6.0.0-preview.4.21253.7 33 6/27/2022
6.0.0-preview.3.21201.4 34 6/27/2022
6.0.0-preview.2.21154.6 31 6/27/2022
6.0.0-preview.1.21102.12 40 6/27/2022
5.0.0 30 6/27/2022
5.0.0-rc.2.20475.5 29 6/27/2022
5.0.0-rc.1.20451.14 34 6/27/2022
5.0.0-preview.8.20407.11 32 6/27/2022
5.0.0-preview.7.20364.11 38 6/27/2022
5.0.0-preview.6.20305.6 31 6/27/2022
5.0.0-preview.5.20278.1 42 6/27/2022
5.0.0-preview.4.20251.6 26 6/27/2022
5.0.0-preview.3.20215.2 33 6/27/2022
5.0.0-preview.2.20160.3 35 6/26/2022
5.0.0-preview.1.20120.4 34 6/26/2022
3.1.32 34 2/21/2023
3.1.31 32 12/3/2022
3.1.30 29 12/3/2022
3.1.29 30 2/14/2023
3.1.28 29 8/30/2022
3.1.27 28 5/14/2023
3.1.26 35 6/27/2022
3.1.25 36 6/27/2022
3.1.24 32 6/27/2022
3.1.23 28 6/27/2022
3.1.22 39 6/27/2022
3.1.21 31 6/27/2022
3.1.20 36 6/27/2022
3.1.19 33 6/27/2022
3.1.18 33 6/27/2022
3.1.17 30 6/27/2022
3.1.16 30 6/27/2022
3.1.15 33 6/27/2022
3.1.14 34 6/27/2022
3.1.13 34 6/27/2022
3.1.12 31 6/27/2022
3.1.11 40 6/27/2022
3.1.10 36 6/27/2022
3.1.9 30 6/27/2022
3.1.8 33 6/27/2022
3.1.7 29 6/27/2022
3.1.6 29 6/27/2022
3.1.5 30 6/27/2022
3.1.4 36 6/27/2022
3.1.3 32 6/27/2022
3.1.2 30 6/27/2022
3.1.1 42 6/27/2022
3.1.0 38 6/27/2022
3.1.0-preview3.19553.2 38 6/27/2022
3.1.0-preview2.19525.4 34 6/27/2022
3.1.0-preview1.19506.1 33 6/27/2022
3.0.3 37 6/27/2022
3.0.2 39 6/27/2022
3.0.1 36 6/27/2022
3.0.0 33 6/27/2022
3.0.0-rc1.19456.10 36 6/27/2022
3.0.0-preview9.19423.4 44 6/27/2022
3.0.0-preview8.19405.4 34 6/27/2022
3.0.0-preview7.19362.4 32 6/27/2022
3.0.0-preview6.19304.6 35 6/27/2022
3.0.0-preview5.19227.9 41 6/27/2022
3.0.0-preview4.19216.2 33 6/27/2022
3.0.0-preview3.19153.1 36 6/27/2022
3.0.0-preview.19074.2 30 6/27/2022
3.0.0-preview.18572.1 35 6/27/2022
2.2.0 37 6/27/2022
2.2.0-preview3-35497 35 6/27/2022
2.2.0-preview2-35157 32 6/27/2022
2.2.0-preview1-35029 34 6/27/2022
2.1.1 38 6/27/2022
2.1.0 33 6/27/2022
2.1.0-rc1-final 36 6/27/2022
2.1.0-preview2-final 29 6/27/2022
2.1.0-preview1-final 36 6/27/2022
2.0.2 31 6/27/2022
2.0.1 40 6/27/2022
2.0.0 36 6/27/2022
2.0.0-preview2-final 47 6/27/2022
2.0.0-preview1-final 35 6/27/2022
1.1.2 32 6/13/2022
1.1.1 36 6/27/2022
1.1.0 36 6/27/2022
1.1.0-preview1-final 34 6/27/2022
1.0.2 29 6/27/2022
1.0.1 35 6/27/2022
1.0.0 35 6/27/2022
1.0.0-rc2-final 28 6/27/2022
1.0.0-rc1-final 37 6/27/2022