gpt4 book ai didi

.net - Azure 应用程序服务 Api 应用程序中的 netFrameworkVersion

转载 作者:行者123 更新时间:2023-12-02 18:19:01 24 4
gpt4 key购买 nike

我正在使用 bicep 在 azure 中配置一个 api 应用程序。这是一个 dotnet core 3.1 应用程序。对于 netFrameworkVersion 我提供“v3.1”,但这不起作用。 Bicep 模板的部署确实有效,但我的应用程序却不起作用。门户中.NET 版本的值为空。 enter image description here

当我手动更改门户中的版本并导出我的应用程序时,返回的 ARM 模板将 netFrameworkVersion 设置为“v4.0”。我很困惑,这里发生了什么?我似乎找不到任何有关此的文档。
enter image description here

enter image description here

最佳答案

您需要在 siteConfig 部分中指定 CURRENT_STACK 元数据和 netFrameworkVersion 属性:

resource webapp 'Microsoft.Web/sites@2018-11-01' = {
...
properties: {
...
siteConfig: {
...
netFrameworkVersion: 'v6.0'
metadata: [
{
name: 'CURRENT_STACK'
value: 'dotnet'
}
]
...
}
...
}
}

关于.net - Azure 应用程序服务 Api 应用程序中的 netFrameworkVersion,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71114618/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com