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

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
This is a prerelease version of Microsoft.Extensions.Configuration.Json.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Microsoft.Extensions.Configuration.Json --version 8.0.0-preview.1.23110.8
NuGet\Install-Package Microsoft.Extensions.Configuration.Json -Version 8.0.0-preview.1.23110.8
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0-preview.1.23110.8" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Microsoft.Extensions.Configuration.Json --version 8.0.0-preview.1.23110.8
#r "nuget: Microsoft.Extensions.Configuration.Json, 8.0.0-preview.1.23110.8"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Microsoft.Extensions.Configuration.Json as a Cake Addin
#addin nuget:?package=Microsoft.Extensions.Configuration.Json&version=8.0.0-preview.1.23110.8&prerelease

// Install Microsoft.Extensions.Configuration.Json as a Cake Tool
#tool nuget:?package=Microsoft.Extensions.Configuration.Json&version=8.0.0-preview.1.23110.8&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.

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>
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  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 is compatible.  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. 
.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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3.6K)

Showing the top 5 NuGet packages that depend on Microsoft.Extensions.Configuration.Json:

Package Downloads
Microsoft.Extensions.Configuration.UserSecrets The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

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 The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Hosting and startup infrastructures for applications.

Microsoft.Azure.WebJobs The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

This package contains the runtime assemblies for Microsoft.Azure.WebJobs.Host. It also adds rich diagnostics capabilities which makes it easier to monitor the WebJobs in the dashboard. For more information, please visit http://go.microsoft.com/fwlink/?LinkID=320971

Microsoft.ApplicationInsights.AspNetCore The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

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 The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Microsoft.AspNetCore

GitHub repositories (601)

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
jasontaylordev/CleanArchitecture
Clean Architecture Solution Template for ASP.NET Core
Version Downloads Last updated
9.0.0-preview.3.24172.9 7,460 4/11/2024
9.0.0-preview.2.24128.5 17,768 3/12/2024
9.0.0-preview.1.24080.9 50,087 2/13/2024
8.0.0 23,930,545 11/14/2023
8.0.0-rc.2.23479.6 226,015 10/10/2023
8.0.0-rc.1.23419.4 136,293 9/12/2023
8.0.0-preview.7.23375.6 123,379 8/8/2023
8.0.0-preview.6.23329.7 98,248 7/11/2023
8.0.0-preview.5.23280.8 72,157 6/13/2023
8.0.0-preview.4.23259.5 173,058 5/16/2023
8.0.0-preview.3.23174.8 142,755 4/11/2023
8.0.0-preview.2.23128.3 57,458 3/14/2023
8.0.0-preview.1.23110.8 118,453 2/21/2023
7.0.0 88,622,625 11/7/2022
7.0.0-rc.2.22472.3 186,632 10/11/2022
7.0.0-rc.1.22426.10 136,048 9/14/2022
7.0.0-preview.7.22375.6 191,192 8/9/2022
7.0.0-preview.6.22324.4 86,060 7/12/2022
7.0.0-preview.5.22301.12 62,969 6/14/2022
7.0.0-preview.4.22229.4 97,000 5/10/2022
7.0.0-preview.3.22175.4 58,405 4/13/2022
7.0.0-preview.2.22152.2 53,411 3/14/2022
7.0.0-preview.1.22076.8 46,707 2/17/2022
6.0.2-mauipre.1.22102.15 61,896 2/15/2022
6.0.2-mauipre.1.22054.8 146,735 1/19/2022
6.0.0 213,083,298 11/8/2021
6.0.0-rc.2.21480.5 522,019 10/12/2021
6.0.0-rc.1.21451.13 322,437 9/14/2021
6.0.0-preview.7.21377.19 204,850 8/10/2021
6.0.0-preview.6.21352.12 122,582 7/14/2021
6.0.0-preview.5.21301.5 74,955 6/15/2021
6.0.0-preview.4.21253.7 57,467 5/24/2021
6.0.0-preview.3.21201.4 183,651 4/8/2021
6.0.0-preview.2.21154.6 105,214 3/11/2021
6.0.0-preview.1.21102.12 115,757 2/12/2021
5.0.0 143,281,999 11/9/2020
5.0.0-rc.2.20475.5 242,346 10/13/2020
5.0.0-rc.1.20451.14 331,999 9/14/2020
5.0.0-preview.8.20407.11 63,613 8/25/2020
5.0.0-preview.7.20364.11 128,473 7/21/2020
5.0.0-preview.6.20305.6 55,898 6/25/2020
5.0.0-preview.5.20278.1 45,279 6/10/2020
5.0.0-preview.4.20251.6 117,123 5/18/2020
5.0.0-preview.3.20215.2 43,236 4/23/2020
5.0.0-preview.2.20160.3 117,561 4/2/2020
5.0.0-preview.1.20120.4 42,832 3/16/2020
3.1.32 1,667,461 12/13/2022
3.1.31 573,591 11/8/2022
3.1.30 1,250,347 10/11/2022
3.1.29 325,092 9/13/2022
3.1.28 453,249 8/9/2022
3.1.27 474,126 7/12/2022
3.1.26 424,907 6/14/2022
3.1.25 737,598 5/10/2022
3.1.24 654,404 4/11/2022
3.1.23 1,227,776 3/8/2022
3.1.22 7,057,322 12/14/2021
3.1.21 2,128,243 11/7/2021
3.1.20 1,210,994 10/11/2021
3.1.19 1,280,539 9/14/2021
3.1.18 2,488,545 8/10/2021
3.1.17 2,002,927 7/13/2021
3.1.16 2,428,047 6/8/2021
3.1.15 2,932,524 5/11/2021
3.1.14 3,828,932 4/6/2021
3.1.13 5,324,479 3/9/2021
3.1.12 3,075,788 2/9/2021
3.1.11 4,504,887 1/12/2021
3.1.10 10,706,291 11/9/2020
3.1.9 13,078,595 10/13/2020
3.1.8 16,347,932 9/8/2020
3.1.7 11,537,371 8/11/2020
3.1.6 19,238,619 7/14/2020
3.1.5 18,885,328 6/9/2020
3.1.4 11,562,400 5/12/2020
3.1.3 20,186,361 3/24/2020
3.1.2 17,354,430 2/18/2020
3.1.1 13,079,332 1/14/2020
3.1.0 99,267,414 12/3/2019
3.1.0-preview3.19553.2 69,880 11/13/2019
3.1.0-preview2.19525.4 10,133 11/1/2019
3.1.0-preview1.19506.1 20,069 10/15/2019
3.0.3 564,646 2/18/2020
3.0.2 757,866 1/14/2020
3.0.1 2,489,943 11/18/2019
3.0.0 21,326,924 9/23/2019
3.0.0-rc1.19456.10 29,632 9/16/2019
3.0.0-preview9.19423.4 210,255 9/4/2019
3.0.0-preview8.19405.4 196,966 8/13/2019
3.0.0-preview7.19362.4 179,470 7/23/2019
3.0.0-preview6.19304.6 526,089 6/12/2019
3.0.0-preview5.19227.9 196,264 5/6/2019
3.0.0-preview4.19216.2 31,577 4/18/2019
3.0.0-preview3.19153.1 143,510 3/6/2019
3.0.0-preview.19074.2 128,795 1/29/2019
3.0.0-preview.18572.1 30,834 12/4/2018
2.2.0 90,890,996 12/3/2018
2.2.0-preview3-35497 217,910 10/17/2018
2.2.0-preview2-35157 112,687 9/12/2018
2.2.0-preview1-35029 53,409 8/22/2018
2.1.1 47,403,533 6/18/2018
2.1.0 203,913,626 5/29/2018
2.1.0-rc1-final 104,439 5/6/2018
2.1.0-preview2-final 82,465 4/10/2018
2.1.0-preview1-final 186,411 2/26/2018
2.0.2 7,588,475 5/7/2018
2.0.1 9,203,160 3/13/2018
2.0.0 41,327,598 8/11/2017
2.0.0-preview2-final 126,904 6/28/2017
2.0.0-preview1-final 69,556 5/10/2017
1.1.2 13,742,234 5/9/2017
1.1.1 3,943,546 3/6/2017
1.1.0 4,235,234 11/16/2016
1.1.0-preview1-final 34,556 10/24/2016
1.0.2 19,330,518 3/6/2017
1.0.1 847,641 12/12/2016
1.0.0 9,125,467 6/27/2016
1.0.0-rc2-final 180,600 5/16/2016
1.0.0-rc1-final 488,703 11/18/2015