我有多个ASP.NET核心Web应用程序共享一个常见的 appsettings.Common.json 配置文件,该文件在程序启动时导入,如下所示:
configurationBuilder.AddJsonFile(path: $"appsettings.Common.json");
我想在我在本地开发的Azure功能中使用相同的 appsettings.Common.json ,但这似乎是不可能的。 Azure函数使用local.settings.json进行配置,它似乎是硬编码的。
对我来说,无法在Azure应用程序中导入任何json配置文件,就像我在Azure功能中所做的那样。
一种可能性是我将 appsettings.Common.json 的所有内容移至 local.settings.json 并以相同的方式在Web中导入应用。
您是否知道我可以在Azure功能中导入现有 appsettings.Common.json 的其他方式?