Microsoft.Extensions.Configuration.Json
9.0.0-rc.2.24473.5
Prefix Reserved
dotnet add package Microsoft.Extensions.Configuration.Json --version 9.0.0-rc.2.24473.5
NuGet\Install-Package Microsoft.Extensions.Configuration.Json -Version 9.0.0-rc.2.24473.5
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="9.0.0-rc.2.24473.5" />
paket add Microsoft.Extensions.Configuration.Json --version 9.0.0-rc.2.24473.5
#r "nuget: Microsoft.Extensions.Configuration.Json, 9.0.0-rc.2.24473.5"
// Install Microsoft.Extensions.Configuration.Json as a Cake Addin #addin nuget:?package=Microsoft.Extensions.Configuration.Json&version=9.0.0-rc.2.24473.5&prerelease // Install Microsoft.Extensions.Configuration.Json as a Cake Tool #tool nuget:?package=Microsoft.Extensions.Configuration.Json&version=9.0.0-rc.2.24473.5&prerelease
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.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 is compatible. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 is compatible. |
.NET Framework | net461 was computed. net462 is compatible. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.6.2
- Microsoft.Extensions.Configuration (>= 9.0.0-rc.2.24473.5)
- Microsoft.Extensions.Configuration.Abstractions (>= 9.0.0-rc.2.24473.5)
- Microsoft.Extensions.Configuration.FileExtensions (>= 9.0.0-rc.2.24473.5)
- Microsoft.Extensions.FileProviders.Abstractions (>= 9.0.0-rc.2.24473.5)
- System.Text.Json (>= 9.0.0-rc.2.24473.5)
-
.NETStandard 2.0
- Microsoft.Extensions.Configuration (>= 9.0.0-rc.2.24473.5)
- Microsoft.Extensions.Configuration.Abstractions (>= 9.0.0-rc.2.24473.5)
- Microsoft.Extensions.Configuration.FileExtensions (>= 9.0.0-rc.2.24473.5)
- Microsoft.Extensions.FileProviders.Abstractions (>= 9.0.0-rc.2.24473.5)
- System.Text.Json (>= 9.0.0-rc.2.24473.5)
-
.NETStandard 2.1
- Microsoft.Extensions.Configuration (>= 9.0.0-rc.2.24473.5)
- Microsoft.Extensions.Configuration.Abstractions (>= 9.0.0-rc.2.24473.5)
- Microsoft.Extensions.Configuration.FileExtensions (>= 9.0.0-rc.2.24473.5)
- Microsoft.Extensions.FileProviders.Abstractions (>= 9.0.0-rc.2.24473.5)
- System.Text.Json (>= 9.0.0-rc.2.24473.5)
-
net8.0
- Microsoft.Extensions.Configuration (>= 9.0.0-rc.2.24473.5)
- Microsoft.Extensions.Configuration.Abstractions (>= 9.0.0-rc.2.24473.5)
- Microsoft.Extensions.Configuration.FileExtensions (>= 9.0.0-rc.2.24473.5)
- Microsoft.Extensions.FileProviders.Abstractions (>= 9.0.0-rc.2.24473.5)
- System.Text.Json (>= 9.0.0-rc.2.24473.5)
-
net9.0
- Microsoft.Extensions.Configuration (>= 9.0.0-rc.2.24473.5)
- Microsoft.Extensions.Configuration.Abstractions (>= 9.0.0-rc.2.24473.5)
- Microsoft.Extensions.Configuration.FileExtensions (>= 9.0.0-rc.2.24473.5)
- Microsoft.Extensions.FileProviders.Abstractions (>= 9.0.0-rc.2.24473.5)
NuGet packages (3.8K)
Showing the top 5 NuGet packages that depend on Microsoft.Extensions.Configuration.Json:
Package | Downloads |
---|---|
Microsoft.Extensions.Configuration.UserSecrets
User secrets configuration provider implementation for Microsoft.Extensions.Configuration. User secrets mechanism enables you to override application configuration settings with values stored in the local secrets file. You can use UserSecretsConfigurationExtensions.AddUserSecrets extension method on IConfigurationBuilder to add user secrets provider to the configuration builder. |
|
Microsoft.Extensions.Hosting
Hosting and startup infrastructures for applications. |
|
Microsoft.Azure.WebJobs
This package contains the runtime host components of the WebJobs SDK. For more information, please visit https://go.microsoft.com/fwlink/?linkid=2279708. |
|
Microsoft.ApplicationInsights.AspNetCore
Application Insights for ASP.NET Core web applications. See https://azure.microsoft.com/documentation/articles/app-insights-asp-net-five/ for more information. Privacy statement: https://go.microsoft.com/fwlink/?LinkId=512156 |
|
Microsoft.AspNetCore
Microsoft.AspNetCore |
GitHub repositories (638)
Showing the top 5 popular GitHub repositories that depend on Microsoft.Extensions.Configuration.Json:
Repository | Stars |
---|---|
dotnet/aspnetcore
ASP.NET Core is a cross-platform .NET framework for building modern cloud-based web applications on Windows, Mac, or Linux.
|
|
jellyfin/jellyfin
The Free Software Media System
|
|
dotnet/maui
.NET MAUI is the .NET Multi-platform App UI, a framework for building native device applications spanning mobile, tablet, and desktop.
|
|
microsoft/semantic-kernel
Integrate cutting-edge LLM technology quickly and easily into your apps
|
|
icsharpcode/ILSpy
.NET Decompiler with support for PDB generation, ReadyToRun, Metadata (&more) - cross-platform!
|
Version | Downloads | Last updated | |
---|---|---|---|
9.0.0-rc.2.24473.5 | 47,883 | 10/8/2024 | |
9.0.0-rc.1.24431.7 | 64,460 | 9/10/2024 | |
9.0.0-preview.7.24405.7 | 41,846 | 8/13/2024 | |
9.0.0-preview.6.24327.7 | 50,446 | 7/9/2024 | |
9.0.0-preview.5.24306.7 | 41,788 | 6/11/2024 | |
9.0.0-preview.4.24266.19 | 38,674 | 5/21/2024 | |
9.0.0-preview.3.24172.9 | 129,048 | 4/11/2024 | |
9.0.0-preview.2.24128.5 | 44,958 | 3/12/2024 | |
9.0.0-preview.1.24080.9 | 77,592 | 2/13/2024 | |
8.0.1 | 3,030,215 | 10/8/2024 | |
8.0.0 | 94,625,929 | 11/14/2023 | |
8.0.0-rc.2.23479.6 | 281,182 | 10/10/2023 | |
8.0.0-rc.1.23419.4 | 166,300 | 9/12/2023 | |
8.0.0-preview.7.23375.6 | 142,644 | 8/8/2023 | |
8.0.0-preview.6.23329.7 | 114,634 | 7/11/2023 | |
8.0.0-preview.5.23280.8 | 87,360 | 6/13/2023 | |
8.0.0-preview.4.23259.5 | 261,598 | 5/16/2023 | |
8.0.0-preview.3.23174.8 | 199,711 | 4/11/2023 | |
8.0.0-preview.2.23128.3 | 73,163 | 3/14/2023 | |
8.0.0-preview.1.23110.8 | 129,317 | 2/21/2023 | |
7.0.0 | 112,229,735 | 11/7/2022 | |
7.0.0-rc.2.22472.3 | 203,607 | 10/11/2022 | |
7.0.0-rc.1.22426.10 | 153,070 | 9/14/2022 | |
7.0.0-preview.7.22375.6 | 206,322 | 8/9/2022 | |
7.0.0-preview.6.22324.4 | 102,010 | 7/12/2022 | |
7.0.0-preview.5.22301.12 | 68,421 | 6/14/2022 | |
7.0.0-preview.4.22229.4 | 106,284 | 5/10/2022 | |
7.0.0-preview.3.22175.4 | 66,839 | 4/13/2022 | |
7.0.0-preview.2.22152.2 | 57,057 | 3/14/2022 | |
7.0.0-preview.1.22076.8 | 48,788 | 2/17/2022 | |
6.0.0 | 257,661,709 | 11/8/2021 | |
6.0.0-rc.2.21480.5 | 548,577 | 10/12/2021 | |
6.0.0-rc.1.21451.13 | 333,313 | 9/14/2021 | |
6.0.0-preview.7.21377.19 | 212,013 | 8/10/2021 | |
6.0.0-preview.6.21352.12 | 126,851 | 7/14/2021 | |
6.0.0-preview.5.21301.5 | 78,653 | 6/15/2021 | |
6.0.0-preview.4.21253.7 | 59,161 | 5/24/2021 | |
6.0.0-preview.3.21201.4 | 193,251 | 4/8/2021 | |
6.0.0-preview.2.21154.6 | 107,362 | 3/11/2021 | |
6.0.0-preview.1.21102.12 | 127,436 | 2/12/2021 | |
5.0.0 | 164,620,051 | 11/9/2020 | |
5.0.0-rc.2.20475.5 | 257,813 | 10/13/2020 | |
5.0.0-rc.1.20451.14 | 334,527 | 9/14/2020 | |
5.0.0-preview.8.20407.11 | 66,270 | 8/25/2020 | |
5.0.0-preview.7.20364.11 | 130,144 | 7/21/2020 | |
5.0.0-preview.6.20305.6 | 57,550 | 6/25/2020 | |
5.0.0-preview.5.20278.1 | 47,519 | 6/10/2020 | |
5.0.0-preview.4.20251.6 | 121,362 | 5/18/2020 | |
5.0.0-preview.3.20215.2 | 45,087 | 4/23/2020 | |
5.0.0-preview.2.20160.3 | 120,733 | 4/2/2020 | |
5.0.0-preview.1.20120.4 | 43,631 | 3/16/2020 | |
3.1.32 | 2,499,042 | 12/13/2022 | |
3.1.31 | 747,022 | 11/8/2022 | |
3.1.30 | 1,600,019 | 10/11/2022 | |
3.1.29 | 395,619 | 9/13/2022 | |
3.1.28 | 534,189 | 8/9/2022 | |
3.1.27 | 518,029 | 7/12/2022 | |
3.1.26 | 462,650 | 6/14/2022 | |
3.1.25 | 853,186 | 5/10/2022 | |
3.1.24 | 754,194 | 4/11/2022 | |
3.1.23 | 1,355,951 | 3/8/2022 | |
3.1.22 | 9,013,989 | 12/14/2021 | |
3.1.21 | 2,281,218 | 11/7/2021 | |
3.1.20 | 1,313,210 | 10/11/2021 | |
3.1.19 | 1,351,452 | 9/14/2021 | |
3.1.18 | 2,671,098 | 8/10/2021 | |
3.1.17 | 2,111,406 | 7/13/2021 | |
3.1.16 | 2,542,820 | 6/8/2021 | |
3.1.15 | 3,146,057 | 5/11/2021 | |
3.1.14 | 4,090,666 | 4/6/2021 | |
3.1.13 | 5,652,926 | 3/9/2021 | |
3.1.12 | 3,229,965 | 2/9/2021 | |
3.1.11 | 4,930,601 | 1/12/2021 | |
3.1.10 | 11,246,629 | 11/9/2020 | |
3.1.9 | 13,894,981 | 10/13/2020 | |
3.1.8 | 17,077,777 | 9/8/2020 | |
3.1.7 | 12,178,704 | 8/11/2020 | |
3.1.6 | 20,466,282 | 7/14/2020 | |
3.1.5 | 19,857,285 | 6/9/2020 | |
3.1.4 | 12,377,299 | 5/12/2020 | |
3.1.3 | 21,514,102 | 3/24/2020 | |
3.1.2 | 18,135,957 | 2/18/2020 | |
3.1.1 | 14,024,300 | 1/14/2020 | |
3.1.0 | 134,295,663 | 12/3/2019 | |
3.1.0-preview3.19553.2 | 73,494 | 11/13/2019 | |
3.1.0-preview2.19525.4 | 10,355 | 11/1/2019 | |
3.1.0-preview1.19506.1 | 20,656 | 10/15/2019 | |
3.0.3 | 630,304 | 2/18/2020 | |
3.0.2 | 761,493 | 1/14/2020 | |
3.0.1 | 2,599,482 | 11/18/2019 | |
3.0.0 | 23,117,565 | 9/23/2019 | |
3.0.0-rc1.19456.10 | 30,068 | 9/16/2019 | |
3.0.0-preview9.19423.4 | 217,162 | 9/4/2019 | |
3.0.0-preview8.19405.4 | 207,133 | 8/13/2019 | |
3.0.0-preview7.19362.4 | 184,977 | 7/23/2019 | |
3.0.0-preview6.19304.6 | 545,103 | 6/12/2019 | |
3.0.0-preview5.19227.9 | 202,860 | 5/6/2019 | |
3.0.0-preview4.19216.2 | 32,772 | 4/18/2019 | |
3.0.0-preview3.19153.1 | 149,336 | 3/6/2019 | |
3.0.0-preview.19074.2 | 133,317 | 1/29/2019 | |
3.0.0-preview.18572.1 | 31,518 | 12/4/2018 | |
2.2.0 | 101,249,781 | 12/3/2018 | |
2.2.0-preview3-35497 | 219,875 | 10/17/2018 | |
2.2.0-preview2-35157 | 114,262 | 9/12/2018 | |
2.2.0-preview1-35029 | 54,808 | 8/22/2018 | |
2.1.1 | 51,930,933 | 6/18/2018 | |
2.1.0 | 231,167,251 | 5/29/2018 | |
2.1.0-rc1-final | 106,275 | 5/6/2018 | |
2.1.0-preview2-final | 84,044 | 4/10/2018 | |
2.1.0-preview1-final | 188,408 | 2/26/2018 | |
2.0.2 | 8,062,090 | 5/7/2018 | |
2.0.1 | 9,548,758 | 3/13/2018 | |
2.0.0 | 43,987,021 | 8/11/2017 | |
2.0.0-preview2-final | 134,713 | 6/28/2017 | |
2.0.0-preview1-final | 70,686 | 5/10/2017 | |
1.1.2 | 14,464,654 | 5/9/2017 | |
1.1.1 | 4,072,988 | 3/6/2017 | |
1.1.0 | 4,340,007 | 11/16/2016 | |
1.1.0-preview1-final | 34,761 | 10/24/2016 | |
1.0.2 | 19,950,251 | 3/6/2017 | |
1.0.1 | 871,790 | 12/12/2016 | |
1.0.0 | 9,539,836 | 6/27/2016 | |
1.0.0-rc2-final | 184,065 | 5/16/2016 | |
1.0.0-rc1-final | 490,274 | 11/18/2015 |