15

Does anyone have any knowledge on Azure app service .NET 4.8 support. We currently have a repository that we've started to move to .NET Core but because of our dependencies, we've had to target .NET 4.8. Unfortunately, it doesn't look like Azure supports this framework version yet.

Does anyone have any ideas on timeline for if/when this might be supported? Or possible workarounds since we can't install third-party software on these services.

Stephen Kennedy
  • 20,585
  • 22
  • 95
  • 108
Appa
  • 457
  • 6
  • 13
  • It doesn't look like there's anything in 4.8 that would be critical to an Azure App Service. Can you target 4.7.x? – Sam Axe Oct 09 '19 at 22:35
  • 2
    I just wanted to comment on this one: .SameSite=(in our case)None is a cookie property that only got implemented in 4.8. And in a few weeks, it's gonna become REAL important (when Google flips the switch in chrome and changes the default behavior). – Frog Pr1nce Jan 06 '20 at 14:07
  • @FrogPr1nce 4.7.2 has the SameSite-property too – Sami Poimala Feb 26 '20 at 11:31

4 Answers4

14

Update

Jeff Martinez says:

.NET Framework 4.8 support is coming to App Service.

Public Azure cloud deployment will begin in mid-late July 2020 completing by mid-September 2020. For our Sovereign clouds, deployment will begin by mid-late August 2020 and complete by early-October 2020.


As of late August 2019, updating Azure App Service to .Net 4.8 is planned.

Reference: https://feedback.azure.com/forums/169385-web-apps/suggestions/37566262-upgrade-app-service-with-net-4-8

There have been no updates to Azure App Service since 19 August 2019.

Reference: https://azure.microsoft.com/en-au/updates/?product=app-service

Igby Largeman
  • 16,495
  • 3
  • 60
  • 86
  • 1
    Just to confirm: it *is* happening. See [App service announcement](https://github.com/Azure/app-service-announcements/issues/249) and [blog post](https://azure.github.io/AppService/2020/06/09/NET-Framework-4.8-is-coming-to-App-Service.html) – superjos Jun 25 '20 at 11:24
  • 2
    One question, Is it compulsory to update our APP as well if Azure updates the Framework of App service to 8? – Munavvar Husein Shaikh Jun 25 '20 at 11:25
  • Good question, Munavvar. I asked here: https://stackoverflow.com/questions/62577840/is-it-required-to-update-web-apps-to-target-net-4-8-when-azure-app-services-upd – Pete Jun 25 '20 at 14:34
5

Late answer, but it has just been announced that deployment of .NET Framework 4.8 to Azure App Service will start in July 2020. See the GitHub issue.

Hope this helps anyone looking for an update on this.

rmb355
  • 146
  • 1
  • 6
4

According to my research, at the moment, Azure app service does not support .Net 4.8. Azure app service just supports up to .NET framework 4.7.2. For more details, please refer to the document. enter image description here

According to the situation, I suggest you make your application as a Container in Visual Studio then deploy Container to Azure or deploy your application to Azure VM.

Jim Xu
  • 21,610
  • 2
  • 19
  • 39
1

.Net 4.8 is supported now on Azure App service from 05 August, 2020
Check below update url for more info:
https://azure.microsoft.com/en-in/updates/app-service-net-framework-48-support-now-available/

You can also check it in Configuration settings of your existing App:
enter image description here

Manish Gupta
  • 1,405
  • 14
  • 32