Microsoft.Extensions.Configuration.Json 9.0.15
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 |
|---|---|
|
EPPlus
A spreadsheet library for .NET framework and .NET core
|
7 |
|
EPPlus
A spreadsheet library for .NET framework and .NET core
|
8 |
|
FlubuCore
A cross platform build and deployment automation system for building projects and executing deployment scripts using C# code.
Documentation can be found at: https://github.com/dotnetcore/FlubuCore
Detailed examples can be found at: https://github.com/dotnetcore/FlubuCore.Examples
|
7 |
|
FlubuCore
A cross platform build and deployment automation system for building projects and executing deployment scripts using C# code.
Documentation can be found at: https://github.com/flubu-core/flubu.core
Detailed examples can be found at: https://github.com/flubu-core/examples
|
7 |
|
JQ.Common.Helpers
用于HIS2.0系统的帮助类类库
|
10 |
|
JQ.Common.Helpers
用于HIS2.0系统的帮助类类库
|
12 |
|
JQ.Common.Helpers
用于HIS2.0系统的帮助类类库
|
13 |
|
JQ.Common.Helpers
用于HIS2.0系统的帮助类类库
|
16 |
|
JQ.Common.Helpers
用于HIS2.0系统的帮助类类库
|
23 |
|
JQ.Common.Helpers
用于HIS2.0系统的帮助类类库
|
36 |
|
JQ.Common.Helpers
用于HIS2.0系统的帮助类类库
|
41 |
|
JQ.Common.Helpers
用于HIS2.0系统的帮助类类库
|
61 |
|
Microsoft.AspNetCore
Microsoft.AspNetCore
|
8 |
|
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.
|
9 |
|
Microsoft.Extensions.Configuration.UserSecrets
User secrets configuration provider implementation for Microsoft.Extensions.Configuration.
|
13 |
|
Microsoft.Extensions.Configuration.UserSecrets
User secrets configuration provider implementation for Microsoft.Extensions.Configuration.
|
15 |
|
Microsoft.Extensions.Configuration.UserSecrets
User secrets configuration provider implementation for Microsoft.Extensions.Configuration.
This package was built from the source code at https://github.com/aspnet/Extensions/tree/9bc79b2f25a3724376d7af19617c33749a30ea3a
|
8 |
|
MySql.Data
MySql.Data.MySqlClient .Net Core Class Library
|
9 |
.NET Framework 4.6.2
- Microsoft.Extensions.Configuration.Abstractions (>= 9.0.15)
- Microsoft.Extensions.Configuration.FileExtensions (>= 9.0.15)
- Microsoft.Extensions.Configuration (>= 9.0.15)
- System.Text.Json (>= 9.0.15)
- Microsoft.Extensions.FileProviders.Abstractions (>= 9.0.15)
.NET Standard 2.1
- System.Text.Json (>= 9.0.15)
- Microsoft.Extensions.FileProviders.Abstractions (>= 9.0.15)
- Microsoft.Extensions.Configuration (>= 9.0.15)
- Microsoft.Extensions.Configuration.FileExtensions (>= 9.0.15)
- Microsoft.Extensions.Configuration.Abstractions (>= 9.0.15)
.NET Standard 2.0
- System.Text.Json (>= 9.0.15)
- Microsoft.Extensions.FileProviders.Abstractions (>= 9.0.15)
- Microsoft.Extensions.Configuration (>= 9.0.15)
- Microsoft.Extensions.Configuration.FileExtensions (>= 9.0.15)
- Microsoft.Extensions.Configuration.Abstractions (>= 9.0.15)
.NET 9.0
- Microsoft.Extensions.FileProviders.Abstractions (>= 9.0.15)
- Microsoft.Extensions.Configuration (>= 9.0.15)
- Microsoft.Extensions.Configuration.Abstractions (>= 9.0.15)
- Microsoft.Extensions.Configuration.FileExtensions (>= 9.0.15)
.NET 8.0
- Microsoft.Extensions.Configuration.Abstractions (>= 9.0.15)
- Microsoft.Extensions.Configuration (>= 9.0.15)
- Microsoft.Extensions.FileProviders.Abstractions (>= 9.0.15)
- System.Text.Json (>= 9.0.15)
- Microsoft.Extensions.Configuration.FileExtensions (>= 9.0.15)