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

后端 未结 7 1185
温柔的废话
温柔的废话 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:34

    We've managed to publish ASP.NET Core 2.1 RC1 webapp to Azure app-service using "self-contained" deployment mode.

    Platform target: Any CPU

    Here are the package references from our .csproj:

    <PackageReference Include="Microsoft.AspNetCore.App" /> <PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="2.1.0-rc1-final" PrivateAssets="All" /> <PackageReference Include="Microsoft.AspNetCore.AzureAppServicesIntegration" Version="2.1.0-rc1-final" />

    0 讨论(0)
提交回复
热议问题