Appa
Appa

Reputation: 507

Azure support for .NET 4.8

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.

Upvotes: 15

Views: 7843

Answers (4)

mg_dev
mg_dev

Reputation: 1403

.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

Upvotes: 1

Igby Largeman
Igby Largeman

Reputation: 16747

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

Upvotes: 14

rmb355
rmb355

Reputation: 166

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.

Upvotes: 5

Jim Xu
Jim Xu

Reputation: 23111

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.

Upvotes: 4

Related Questions