标签: asp.net-core configuration-files asp.net-core-2.0
在常规的ASP.NET / MVC开发中,我们可以将配置条目从应用程序/站点目录中的web.config移动到machine.config。
web.config
machine.config
使用ASP.NET Core有类似的东西,现在我们有基于json的配置文件吗?
答案 0 :(得分:3)
从技术上讲,您可以从任何位置提取任何JSON。只需传递完整的文件系统路径,而不仅仅是“appsettings.json”。
但是,实际上,如果您正在讨论外部化配置,则应该使用环境变量或Azure Key Vault等服务。