Microsoft.Extensions.Configuration.Json 9.0.0-preview.3.24172.9
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
Microsoft.AspNetCore
|
31 |
Microsoft.AspNetCore
Microsoft.AspNetCore
|
29 |
Microsoft.Extensions.Logging.AzureAppServices
Logger implementation to support Azure App Services 'Diagnostics logs' and 'Log stream' features.
|
28 |
Microsoft.AspNetCore
Microsoft.AspNetCore
|
27 |
Microsoft.AspNetCore
Microsoft.AspNetCore
|
26 |
Microsoft.Extensions.Logging.AzureAppServices
Logger implementation to support Azure App Services 'Diagnostics logs' and 'Log stream' features.
This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/32e8c8cae5b1a4dd752d0a42a6f8a2813f75f173
|
26 |
Microsoft.Extensions.Logging.AzureAppServices
Logger implementation to support Azure App Services 'Diagnostics logs' and 'Log stream' features.
|
26 |
Microsoft.Extensions.Logging.AzureAppServices
Logger implementation to support Azure App Services 'Diagnostics logs' and 'Log stream' features.
This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/f9ae0f5d30be2de3c0de61b5673bd8873231d70a
|
26 |
Microsoft.ApplicationInsights.AspNetCore
Application Insights for ASP.NET Core web applications. See https://azure.microsoft.com/en-us/documentation/articles/app-insights-asp-net-five/ for more information. Privacy statement: https://go.microsoft.com/fwlink/?LinkId=512156
|
26 |
Microsoft.AspNetCore.All
Provides a default set of APIs for building an ASP.NET Core application, and also includes API for third-party integrations with ASP.NET Core.
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.
|
26 |
Microsoft.AspNetCore
Microsoft.AspNetCore
|
25 |
.NET Framework 4.6.2
- Microsoft.Extensions.Configuration.Abstractions (>= 9.0.0-preview.3.24172.9)
- Microsoft.Extensions.Configuration.FileExtensions (>= 9.0.0-preview.3.24172.9)
- Microsoft.Extensions.Configuration (>= 9.0.0-preview.3.24172.9)
- Microsoft.Extensions.FileProviders.Abstractions (>= 9.0.0-preview.3.24172.9)
- System.Text.Json (>= 9.0.0-preview.3.24172.9)
.NET Standard 2.1
- System.Text.Json (>= 9.0.0-preview.3.24172.9)
- Microsoft.Extensions.FileProviders.Abstractions (>= 9.0.0-preview.3.24172.9)
- Microsoft.Extensions.Configuration (>= 9.0.0-preview.3.24172.9)
- Microsoft.Extensions.Configuration.FileExtensions (>= 9.0.0-preview.3.24172.9)
- Microsoft.Extensions.Configuration.Abstractions (>= 9.0.0-preview.3.24172.9)
.NET Standard 2.0
- System.Text.Json (>= 9.0.0-preview.3.24172.9)
- Microsoft.Extensions.FileProviders.Abstractions (>= 9.0.0-preview.3.24172.9)
- Microsoft.Extensions.Configuration (>= 9.0.0-preview.3.24172.9)
- Microsoft.Extensions.Configuration.FileExtensions (>= 9.0.0-preview.3.24172.9)
- Microsoft.Extensions.Configuration.Abstractions (>= 9.0.0-preview.3.24172.9)
.NET 9.0
- System.Text.Json (>= 9.0.0-preview.3.24172.9)
- Microsoft.Extensions.FileProviders.Abstractions (>= 9.0.0-preview.3.24172.9)
- Microsoft.Extensions.Configuration.FileExtensions (>= 9.0.0-preview.3.24172.9)
- Microsoft.Extensions.Configuration (>= 9.0.0-preview.3.24172.9)
- Microsoft.Extensions.Configuration.Abstractions (>= 9.0.0-preview.3.24172.9)
.NET 8.0
- Microsoft.Extensions.Configuration.Abstractions (>= 9.0.0-preview.3.24172.9)
- Microsoft.Extensions.Configuration (>= 9.0.0-preview.3.24172.9)
- Microsoft.Extensions.FileProviders.Abstractions (>= 9.0.0-preview.3.24172.9)
- System.Text.Json (>= 9.0.0-preview.3.24172.9)
- Microsoft.Extensions.Configuration.FileExtensions (>= 9.0.0-preview.3.24172.9)