找不到指定的框架 'Microsoft.AspNetCore.App',版本“2.2.0”。 - Linux 上的 Azure 应用服务

The specified framework 'Microsoft.AspNetCore.App', version '2.2.0' was not found. - Azure App Service on Linux

我在 Linux 上的 Azure 应用服务中有一个应用程序 运行,我决定将该应用程序从 .NET Core 2.1 升级到 .NET Core 2.2 .它以 .NET Core 2.2 dotnet new angular 模板为蓝本。

我的应用程序使用 Azure Web App for ASP.NET 模板及其默认值加上 Azure App Service Deploy 任务的以下更新在 Azure DevOps 中构建:


应用服务类型:Linux

的 Azure Web 应用

运行时堆栈:.NET Core 2.2

启动命令: dotnet MyAppName.dll


此任务部署应用成功,我通过FTP确认部署的内容。

启动并导航到该应用会显示此页面:

在本地,我的应用程序在 Visual Studio 2017 年在调试和发布模式下成功运行。如果我在本地托管 dotnet publish -c Release 命令的内容,它也可以工作。

我在 Azure 门户中使用“监视”>“诊断日志”启用了日志,并在文件 2019_02_14_RD00155D99205C_default_docker.log:

中找到了这条消息
2019-02-14T19:52:29.377625884Z   _____                               
2019-02-14T19:52:29.377672685Z   /  _  \ __________ _________   ____  
2019-02-14T19:52:29.377679386Z  /  /_\  \___   /  |  \_  __ \_/ __ \ 
2019-02-14T19:52:29.377684186Z /    |    \/    /|  |  /|  | \/\  ___/ 
2019-02-14T19:52:29.377688886Z \____|__  /_____ \____/ |__|    \___  >
2019-02-14T19:52:29.377693986Z         \/      \/                  \/ 
2019-02-14T19:52:29.377698686Z A P P   S E R V I C E   O N   L I N U X
2019-02-14T19:52:29.377703186Z 
2019-02-14T19:52:29.377707486Z Documentation: http://aka.ms/webapp-linux
2019-02-14T19:52:29.377711986Z Dotnet quickstart: https://aka.ms/dotnet-qs
2019-02-14T19:52:29.377716587Z 
2019-02-14T19:52:29.956004709Z Starting OpenBSD Secure Shell server: sshd.
2019-02-14T19:52:30.234443169Z The specified framework 'Microsoft.AspNetCore.App', version '2.2.0' was not found.
2019-02-14T19:52:30.234492570Z   - Check application dependencies and target a framework version installed at:
2019-02-14T19:52:30.234498570Z       /usr/share/dotnet/shared/Microsoft.AspNetCore.App
2019-02-14T19:52:30.234615073Z   - Alternatively, install the framework version '2.2.0'.

我还没有找到任何其他线索。这是否意味着将 Runtime Stack 设置为 .NET Core 2.2 时 Azure 提供的默认图像不正确?


更新 发现 this link,其中提到 Linux 上的 2.2 截至 2019 年 2 月 12 日为 "rolled out"。也许这意味着我的应用服务所在的位置(美国东部)尚未部署正确的映像。假设这是正在发生的事情,向 Azure 门户和 Azure DevOps 添加一个新的非工作 2.2 选项 UI 是糟糕的用户体验。

我今天再次测试并能够部署 .NET Core 2.2 Linux 应用程序。根据对此 Github issue.

的最新编辑判断,这很可能于 2018 年 2 月 26 日开始工作