Azure App Service missing .Net core 3.1

Olaoluwasupo 21 Reputation points
2022-12-20T16:06:12.407+00:00

Since .Net core 3.1 runtime stack is no longer available on azure app service, what other options can you please recommend for me to deploy my .Net core 3.1 web api.

Developer technologies .NET .NET Runtime
Azure App Service
Azure App Service
Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
8,930 questions
0 comments No comments
{count} votes

Accepted answer
  1. Lex Li (Microsoft) 6,037 Reputation points Microsoft Employee
    2022-12-21T09:01:33.623+00:00
    1. Build and run a custom image in Azure App Service, https://learn.microsoft.com/en-us/azure/app-service/tutorial-custom-container?tabs=azure-cli&pivots=container-linux You can either use Linux or Windows container.
    2. With such a container image, you can also use Azure Container Apps, https://learn.microsoft.com/en-us/azure/container-apps/ or AKS, https://learn.microsoft.com/en-us/azure/aks/
    3. The traditional way of creating a Linux or Windows server VM and hosting your ASP.NET Core 3.1 web app there. https://learn.microsoft.com/en-us/azure/virtual-machines/
    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. Bruce (SqlWork.com) 77,686 Reputation points Volunteer Moderator
    2022-12-20T16:20:34.367+00:00

    VM hosting is the typical solution for hosting unsupported code. But why not just upgrade the code to a supported version?


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.