Microsoft.Extensions.Configuration.Json 10.0.2
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 |
|---|---|
|
DevExpress.AspNetCore.Reporting
This package implements the functionality related to the DevExpress Report Designer and Report Viewer ASP.NET Core controls.
|
23 |
|
EPPlus
A spreadsheet library for .NET framework and .NET core
|
17 |
|
Microsoft.Identity.Web.TokenAcquisition
Implementation for higher level API for confidential client applications (ASP.NET Core and SDK/.NET).
|
16 |
|
Elsa.Workflows.Api
Provides API endpoints for client applications such as the Elsa Designer web component.
|
16 |
|
Elsa.EntityFrameworkCore
Provides Entity Framework Core implementations of various abstractions from various modules.
|
16 |
|
Elsa.Scheduling
Provides scheduling activities such as Timer, Delay and StartAt.
|
16 |
|
EPPlus
A spreadsheet library for .NET framework and .NET core
|
16 |
|
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.
|
16 |
|
Volo.Abp.AspNetCore
Package Description
|
15 |
|
Elsa.Scheduling
Provides scheduling activities such as Timer, Delay and StartAt.
|
15 |
|
DevExpress.Data
This package provides basic functionality to data-aware DevExpress controls.
|
15 |
|
Elsa.Labels
Provides funtionality to tag workflows with labels and filter by them.
|
15 |
|
EPPlus
A spreadsheet library for .NET framework and .NET core
|
15 |
.NET Framework 4.6.2
- Microsoft.Extensions.Configuration.Abstractions (>= 10.0.2)
- Microsoft.Extensions.Configuration.FileExtensions (>= 10.0.2)
- Microsoft.Extensions.Configuration (>= 10.0.2)
- Microsoft.Extensions.FileProviders.Abstractions (>= 10.0.2)
- System.Text.Json (>= 10.0.2)
.NET Standard 2.1
- System.Text.Json (>= 10.0.2)
- Microsoft.Extensions.FileProviders.Abstractions (>= 10.0.2)
- Microsoft.Extensions.Configuration (>= 10.0.2)
- Microsoft.Extensions.Configuration.FileExtensions (>= 10.0.2)
- Microsoft.Extensions.Configuration.Abstractions (>= 10.0.2)
.NET Standard 2.0
- System.Text.Json (>= 10.0.2)
- Microsoft.Extensions.FileProviders.Abstractions (>= 10.0.2)
- Microsoft.Extensions.Configuration (>= 10.0.2)
- Microsoft.Extensions.Configuration.FileExtensions (>= 10.0.2)
- Microsoft.Extensions.Configuration.Abstractions (>= 10.0.2)
.NET 10.0
- Microsoft.Extensions.FileProviders.Abstractions (>= 10.0.2)
- Microsoft.Extensions.Configuration.FileExtensions (>= 10.0.2)
- Microsoft.Extensions.Configuration.Abstractions (>= 10.0.2)
- Microsoft.Extensions.Configuration (>= 10.0.2)
.NET 9.0
- Microsoft.Extensions.FileProviders.Abstractions (>= 10.0.2)
- System.Text.Json (>= 10.0.2)
- Microsoft.Extensions.Configuration.Abstractions (>= 10.0.2)
- Microsoft.Extensions.Configuration.FileExtensions (>= 10.0.2)
- Microsoft.Extensions.Configuration (>= 10.0.2)
.NET 8.0
- Microsoft.Extensions.Configuration.Abstractions (>= 10.0.2)
- Microsoft.Extensions.Configuration.FileExtensions (>= 10.0.2)
- Microsoft.Extensions.FileProviders.Abstractions (>= 10.0.2)
- System.Text.Json (>= 10.0.2)
- Microsoft.Extensions.Configuration (>= 10.0.2)