.NET Core中使用读取配置文件

Posted mountaincat

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了.NET Core中使用读取配置文件相关的知识,希望对你有一定的参考价值。

引入Nuget的两个类库

Microsoft.Extensions.Configuration
Microsoft.Extensions.Configuration.Json

使用

var builder = new ConfigurationBuilder().SetBasePath(Directory.GetCurrentDirectory()).AddJsonFile("appsettings.json");
var configurationRoot = builder.Build();
var motherNameSection = configurationRoot.GetSection("mother").GetSection("name");

技术图片

 

以上是关于.NET Core中使用读取配置文件的主要内容,如果未能解决你的问题,请参考以下文章

.NET CORE类库读取配置文件

.NET Core中使用读取配置文件

.Net Core 读取Json配置文件

Net Core 读取json文件

.net core mvc 类库读取配置文件

.net core读取配置文件appsetting.json