json Asp.net核心访问appsettings.json
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了json Asp.net核心访问appsettings.json相关的知识,希望对你有一定的参考价值。
public static IConfigurationRoot configuration;
public static void Main(string[] args)
{
var builder = new ConfigurationBuilder()
.SetBasePath(Directory.GetCurrentDirectory())
.AddJsonFile("appsettings.json", optional: true, reloadOnChange: true);
configuration = builder.Build();
BuildWebHost(args).Run();
}
以上是关于json Asp.net核心访问appsettings.json的主要内容,如果未能解决你的问题,请参考以下文章
ConfigurationManager 是不是与 ASP.NET 核心的 appsettings.json 一起使用?
为asp.net核心中的开发和发布环境自动设置appsettings.json?
无法解析 JSON 文件,Progam.cs asp.net 核心中的错误
如何将文件和 json 对象从邮递员传递到 asp.net 核心 webapi
ASP.NET MVC 核心 POST 请求未将 JSON 数据转换为模型
无法在 asp.net 核心中使用 ajax 将 json 发布到控制器