.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中使用读取配置文件的主要内容,如果未能解决你的问题,请参考以下文章