将json配置文件添加到Azure功能以进行本地开发

时间:2018-04-24 13:43:17

标签: json azure azure-functions

我有多个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 的其他方式?

1 个答案:

答案 0 :(得分:2)

今天不可能。我提交了一个问题来追踪它:https://github.com/Azure/azure-functions-host/issues/2730