ASP.NET Core 2.1 Preview 2 App Not working on Azure App Service

后端 未结 7 1188
温柔的废话
温柔的废话 2021-02-13 14:32

I\'ve been running my ASP.NET Core 2.1 Preview-1 app on Azure since this release became available. I had installed the ASP.NET Core runtime extensions through the portal and it\

7条回答
  •  既然无缘
    2021-02-13 15:17

    Try adding a global.json file in your project folder with this content:

    {
      "sdk": {
        "version": "2.1.300-preview2-008530"
      }
    }
    

    Restart your app after that to be on the safe side.

提交回复
热议问题