Reputation: 1006
I am trying to setup a WebAp on Azure for asp.net core 3.0
However, the drop down box for "runtime stack" only allows .net core 2.2 as maximum.
Is .net core 3.0 not supported in Azure?
Upvotes: 3
Views: 698
Reputation: 1462
https://aspnetcoreon.azurewebsites.net/#ASP.NET%20Core%20Module
Partially Current
The runtime and shared frameworks are there, but the .NET SDK is missing. You can run 3.0, but not build 3.0.
Seems like you need to build your app as self-contained then deploy? You can check which regions support what in greater detail, using the map.
Upvotes: 2