Microsoft.Extensions.Configuration.Json 9.0.4
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 |
---|---|
Microsoft.AspNetCore.App
Provides a default set of APIs for building an ASP.NET Core application.
This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download.
|
69 |
Microsoft.AspNetCore.App
Provides a default set of APIs for building an ASP.NET Core application.
This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download.
|
62 |
Microsoft.AspNetCore.App
Provides a default set of APIs for building an ASP.NET Core application.
This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download.
|
58 |
EPPlus
A spreadsheet library for .NET framework and .NET core
|
53 |
Microsoft.AspNetCore.App
Microsoft.AspNetCore.App
|
51 |
Microsoft.Extensions.Configuration.UserSecrets
User secrets configuration provider implementation for Microsoft.Extensions.Configuration.
|
50 |
Microsoft.AspNetCore.App
Provides a default set of APIs for building an ASP.NET Core application.
This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download.
|
49 |
Microsoft.AspNetCore.App
Provides a default set of APIs for building an ASP.NET Core application.
This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download.
|
45 |
Microsoft.AspNetCore.App
Provides a default set of APIs for building an ASP.NET Core application.
This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download.
This package was built from the source at:
https://github.com/aspnet/Universe/tree/244e037a222a7cd0a17feafb7f3a625fde40de97
|
44 |
Microsoft.Extensions.Hosting
Hosting and startup infrastructures for applications.
When using NuGet 3.x this package requires at least version 3.4.
|
43 |
Microsoft.AspNetCore.App
Provides a default set of APIs for building an ASP.NET Core application.
This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download.
|
36 |
Microsoft.Extensions.Configuration.UserSecrets
User secrets configuration provider implementation for Microsoft.Extensions.Configuration.
|
35 |
Microsoft.Extensions.Configuration.UserSecrets
User secrets configuration provider implementation for Microsoft.Extensions.Configuration.
When using NuGet 3.x this package requires at least version 3.4.
|
35 |
Microsoft.Extensions.Configuration.UserSecrets
User secrets configuration provider implementation for Microsoft.Extensions.Configuration.
|
34 |
Microsoft.AspNetCore.App
Provides a default set of APIs for building an ASP.NET Core application.
This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download.
|
34 |
Microsoft.AspNetCore.App
Provides a default set of APIs for building an ASP.NET Core application.
This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download.
|
33 |
Microsoft.AspNetCore.App
Provides a default set of APIs for building an ASP.NET Core application.
This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download.
|
32 |
Microsoft.Extensions.Hosting
Hosting and startup infrastructures for applications.
|
30 |
EPPlus
A spreadsheet library for .NET framework and .NET core
|
29 |
.NET Framework 4.6.2
- Microsoft.Extensions.Configuration.Abstractions (>= 9.0.4)
- Microsoft.Extensions.Configuration.FileExtensions (>= 9.0.4)
- Microsoft.Extensions.Configuration (>= 9.0.4)
- System.Text.Json (>= 9.0.4)
- Microsoft.Extensions.FileProviders.Abstractions (>= 9.0.4)
.NET Standard 2.1
- System.Text.Json (>= 9.0.4)
- Microsoft.Extensions.FileProviders.Abstractions (>= 9.0.4)
- Microsoft.Extensions.Configuration (>= 9.0.4)
- Microsoft.Extensions.Configuration.FileExtensions (>= 9.0.4)
- Microsoft.Extensions.Configuration.Abstractions (>= 9.0.4)
.NET Standard 2.0
- System.Text.Json (>= 9.0.4)
- Microsoft.Extensions.FileProviders.Abstractions (>= 9.0.4)
- Microsoft.Extensions.Configuration (>= 9.0.4)
- Microsoft.Extensions.Configuration.FileExtensions (>= 9.0.4)
- Microsoft.Extensions.Configuration.Abstractions (>= 9.0.4)
.NET 9.0
- Microsoft.Extensions.FileProviders.Abstractions (>= 9.0.4)
- Microsoft.Extensions.Configuration (>= 9.0.4)
- Microsoft.Extensions.Configuration.Abstractions (>= 9.0.4)
- Microsoft.Extensions.Configuration.FileExtensions (>= 9.0.4)
.NET 8.0
- Microsoft.Extensions.Configuration.Abstractions (>= 9.0.4)
- Microsoft.Extensions.Configuration (>= 9.0.4)
- Microsoft.Extensions.FileProviders.Abstractions (>= 9.0.4)
- System.Text.Json (>= 9.0.4)
- Microsoft.Extensions.Configuration.FileExtensions (>= 9.0.4)
Version | Downloads | Last updated |
---|---|---|
10.0.0-preview.5.25277.114 | 0 | 06/06/2025 |
10.0.0-preview.4.25258.110 | 0 | 05/12/2025 |
10.0.0-preview.3.25171.5 | 1 | 04/20/2025 |
10.0.0-preview.2.25163.2 | 3 | 03/22/2025 |
10.0.0-preview.1.25080.5 | 5 | 03/01/2025 |
9.0.5 | 0 | 05/13/2025 |
9.0.4 | 1 | 04/18/2025 |
9.0.3 | 5 | 03/17/2025 |
9.0.2 | 5 | 02/15/2025 |
9.0.1 | 5 | 01/29/2025 |
9.0.0 | 8 | 12/14/2024 |
9.0.0-rc.2.24473.5 | 11 | 10/19/2024 |
9.0.0-rc.1.24431.7 | 11 | 09/16/2024 |
9.0.0-preview.7.24405.7 | 12 | 08/16/2024 |
9.0.0-preview.6.24327.7 | 10 | 07/11/2024 |
9.0.0-preview.5.24306.7 | 7 | 06/15/2024 |
9.0.0-preview.4.24266.19 | 9 | 06/03/2024 |
9.0.0-preview.3.24172.9 | 12 | 04/17/2024 |
9.0.0-preview.2.24128.5 | 8 | 04/17/2024 |
9.0.0-preview.1.24080.9 | 10 | 02/19/2024 |
8.0.1 | 10 | 10/20/2024 |
8.0.0 | 9 | 12/15/2023 |
8.0.0-rc.2.23479.6 | 7 | 12/15/2023 |
8.0.0-rc.1.23419.4 | 12 | 12/15/2023 |
8.0.0-preview.7.23375.6 | 11 | 12/15/2023 |
8.0.0-preview.6.23329.7 | 6 | 12/15/2023 |
8.0.0-preview.5.23280.8 | 9 | 12/10/2024 |
8.0.0-preview.4.23259.5 | 14 | 12/15/2023 |
8.0.0-preview.3.23174.8 | 7 | 12/21/2023 |
8.0.0-preview.2.23128.3 | 33 | 04/17/2023 |
8.0.0-preview.1.23110.8 | 8 | 12/15/2023 |
7.0.0 | 19 | 04/24/2023 |
7.0.0-rc.2.22472.3 | 19 | 05/28/2023 |
7.0.0-rc.1.22426.10 | 10 | 12/15/2023 |
7.0.0-preview.7.22375.6 | 12 | 12/15/2023 |
7.0.0-preview.6.22324.4 | 9 | 12/15/2023 |
7.0.0-preview.5.22301.12 | 15 | 12/15/2023 |
7.0.0-preview.4.22229.4 | 13 | 12/15/2023 |
7.0.0-preview.3.22175.4 | 10 | 12/15/2023 |
7.0.0-preview.2.22152.2 | 9 | 12/21/2023 |
7.0.0-preview.1.22076.8 | 56 | 04/20/2023 |
6.0.2-mauipre.1.22102.15 | 8 | 12/15/2023 |
6.0.2-mauipre.1.22054.8 | 9 | 12/15/2023 |
6.0.1 | 8 | 11/13/2024 |
6.0.0 | 44 | 11/22/2021 |
6.0.0-rc.2.21480.5 | 5 | 01/15/2024 |
6.0.0-rc.1.21451.13 | 10 | 12/15/2023 |
6.0.0-preview.7.21377.19 | 7 | 12/15/2023 |
6.0.0-preview.6.21352.12 | 9 | 12/15/2023 |
6.0.0-preview.5.21301.5 | 9 | 12/15/2023 |
6.0.0-preview.4.21253.7 | 8 | 12/15/2023 |
6.0.0-preview.3.21201.4 | 8 | 12/15/2023 |
6.0.0-preview.2.21154.6 | 13 | 12/15/2023 |
6.0.0-preview.1.21102.12 | 9 | 12/15/2023 |
5.0.0 | 55 | 12/30/2020 |
5.0.0-rc.2.20475.5 | 10 | 12/15/2023 |
5.0.0-rc.1.20451.14 | 7 | 04/06/2024 |
5.0.0-preview.8.20407.11 | 8 | 12/15/2023 |
5.0.0-preview.7.20364.11 | 9 | 12/21/2023 |
5.0.0-preview.6.20305.6 | 9 | 12/15/2023 |
5.0.0-preview.5.20278.1 | 11 | 12/15/2023 |
5.0.0-preview.4.20251.6 | 9 | 12/15/2023 |
5.0.0-preview.3.20215.2 | 28 | 09/13/2023 |
5.0.0-preview.2.20160.3 | 8 | 12/15/2023 |
5.0.0-preview.1.20120.4 | 9 | 12/15/2023 |
3.1.32 | 7 | 12/15/2023 |
3.1.31 | 35 | 03/29/2023 |
3.1.30 | 9 | 12/13/2022 |
3.1.29 | 12 | 12/15/2023 |
3.1.28 | 13 | 12/21/2023 |
3.1.27 | 24 | 06/08/2023 |
3.1.26 | 11 | 12/22/2023 |
3.1.25 | 9 | 12/15/2023 |
3.1.24 | 10 | 12/15/2023 |
3.1.23 | 10 | 01/23/2024 |
3.1.22 | 9 | 12/21/2023 |
3.1.21 | 8 | 12/21/2023 |
3.1.20 | 9 | 12/15/2023 |
3.1.19 | 9 | 12/15/2023 |
3.1.18 | 20 | 12/15/2023 |
3.1.17 | 39 | 07/27/2023 |
3.1.16 | 8 | 12/15/2023 |
3.1.15 | 9 | 12/15/2023 |
3.1.14 | 8 | 12/15/2023 |
3.1.13 | 9 | 12/15/2023 |
3.1.12 | 22 | 12/15/2023 |
3.1.11 | 9 | 12/15/2023 |
3.1.10 | 18 | 12/30/2020 |
3.1.9 | 9 | 01/19/2024 |
3.1.8 | 12 | 12/15/2023 |
3.1.7 | 9 | 12/15/2023 |
3.1.6 | 10 | 12/21/2023 |
3.1.5 | 39 | 07/02/2020 |
3.1.4 | 9 | 12/15/2023 |
3.1.3 | 8 | 12/15/2023 |
3.1.2 | 10 | 12/15/2023 |
3.1.1 | 9 | 12/15/2023 |
3.1.0 | 11 | 03/20/2023 |
3.1.0-preview3.19553.2 | 13 | 12/15/2023 |
3.1.0-preview2.19525.4 | 40 | 03/27/2023 |
3.1.0-preview1.19506.1 | 11 | 12/15/2023 |
3.0.3 | 10 | 12/15/2023 |
3.0.2 | 9 | 12/15/2023 |
3.0.1 | 10 | 12/15/2023 |
3.0.0 | 26 | 09/25/2023 |
3.0.0-rc1.19456.10 | 10 | 12/15/2023 |
3.0.0-preview9.19423.4 | 9 | 12/15/2023 |
3.0.0-preview8.19405.4 | 6 | 12/15/2023 |
3.0.0-preview7.19362.4 | 8 | 12/21/2023 |
3.0.0-preview6.19304.6 | 25 | 05/29/2023 |
3.0.0-preview5.19227.9 | 8 | 12/15/2023 |
3.0.0-preview4.19216.2 | 18 | 08/28/2023 |
3.0.0-preview3.19153.1 | 9 | 12/15/2023 |
3.0.0-preview.19074.2 | 13 | 12/15/2023 |
3.0.0-preview.18572.1 | 9 | 12/15/2023 |
2.2.0 | 10 | 12/30/2020 |
2.2.0-preview3-35497 | 18 | 09/22/2023 |
2.2.0-preview2-35157 | 9 | 12/15/2023 |
2.2.0-preview1-35029 | 13 | 12/15/2023 |
2.1.1 | 59 | 12/30/2020 |
2.1.0 | 51 | 03/20/2023 |
2.1.0-rc1-final | 11 | 02/18/2024 |
2.1.0-preview2-final | 11 | 12/15/2023 |
2.1.0-preview1-final | 10 | 12/15/2023 |
2.0.2 | 9 | 12/15/2023 |
2.0.1 | 11 | 01/13/2021 |
2.0.0 | 10 | 03/14/2022 |
2.0.0-preview2-final | 10 | 12/15/2023 |
2.0.0-preview1-final | 33 | 07/14/2023 |
1.1.2 | 9 | 12/15/2023 |
1.1.1 | 9 | 12/15/2023 |
1.1.0 | 7 | 01/15/2024 |
1.1.0-preview1-final | 12 | 12/15/2023 |
1.0.2 | 30 | 11/25/2019 |
1.0.1 | 10 | 12/15/2023 |
1.0.0 | 12 | 12/15/2023 |
1.0.0-rc2-final | 8 | 12/15/2023 |
1.0.0-rc1-final | 11 | 01/15/2024 |