askolotl
askolotl

Reputation: 1006

Runtime Stack for .NET Core 3.0 in Azure

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

Answers (1)

Nick Schroeder
Nick Schroeder

Reputation: 1462

https://aspnetcoreon.azurewebsites.net/#ASP.NET%20Core%20Module

.NET Core on App Services

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

Related Questions