Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the purpose of App Service Stack Settings?

General settings tab

What is the purpose of Stack settings in Azure App Service? I have .NET Core 3.1 app running without problems in App Service with Stack settings as on picture above. Should I modify my ARM Template to set Stack to .NET Core?

like image 322
Piotr Perak Avatar asked Nov 07 '22 11:11

Piotr Perak


1 Answers

On windows OS that is only for initial creation.

After initial web app creation, there isn’t a need to identify that an app is a .NET Core app anymore because the .NET Core bits are already installed on the underlying worker. However for Linux App Service the stack settings will reflect .NET Core for an app, even after its created. MSDN Forum

like image 90
Kamran Avatar answered Nov 25 '22 05:11

Kamran