作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在这里完全不知所措。我刚刚配置了一个新的 Azure Function 应用并创建了以下 host.json 文件:
{
"version": "2.0",
"logging": {
"applicationInsights": {
"samplingExcludedTypes": "Request",
"samplingSettings": {
"isEnabled": true
}
}
},
"Values": {
"BaseUrl": "https://test.test.com",
"GrantType": "test",
"ClientId": "test",
"ClientSecret": "1234"
}
}
由于某种原因,“值”下的设置未在 Azure 门户中应用。当我查看功能设置时,这些值都不会显示在“应用程序设置”下,我需要手动添加它们才能允许工作流程运行。我做了一些研究,似乎表明这是预期的结果? IE:我应该在 Azure 上配置这些值吗?
我在 .NET Core 3.1 上使用最新版本的 Azure Functions
最佳答案
如果您从 Visual Studio 发布应用程序,那么一旦单击“发布”,您将看到“管理应用程序设置”选项,您可以在其中提供设置,并将其保存在您的 Azure Function Profile 中。这将是一次性过程,除非您更改设置。
另一个选择是您可以通过 Azure Pipelines 来部署函数应用,然后可以将这些值作为变量传递给管道
关于c# - Azure Functions - Host.json 不适用于 Azure 应用程序设置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63130799/
我是一名优秀的程序员,十分优秀!