Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What versions of .NET are supported on Azure Web Sites?

To avoid more questions like Azure Websites, Can one deploy .NET 4.5.1 websites? and Azure Websites, Can one deploy .NET 4.5.2 websites, is there a web site that lists all the .NET Frameworks that are supported in Azure Web Sites?

like image 324
Dan Friedman Avatar asked Jun 10 '14 15:06

Dan Friedman


People also ask

Is .NET 5 supported in Azure?

As of March 2021, Microsoft announced that Azure Functions are supported running on . NET 5.

Does Azure support .NET Core?

Azure App Service is a Microsoft cloud computing platform service for hosting web apps, including ASP.NET Core.

How do I check my .NET framework version in Azure App Service?

Good news, you can easily check this for yourself. Head on over to your app service in the Azure portal, find the Console option in the left-hand menu. Type dotnet --info and behold, a handy list of precisely which versions of ASP.NET Core are available to your app.


1 Answers

I don't know if there's any specific blog post or reference listing, but... here's a quick-n-easy way for you to check for yourself. Note: This requires you to already have a Web Site up and running. You can spin up a new free-tier website really quickly. Then:

  • Navigate to the Kudu portal for your website, at https://yourwebsite.scm.azurewebsites.net
  • Go to the Debug Consule menu and choose CMD or PowerShell:

]Kudu debug console menu options

  • Navigate to D:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework and you'll see assembly directories for each installed framework version:

.net framework versions installed

I realize this isn't automated, but at least it's a way for you to make a quick determination. I don't know if this will always work this way, or if it's the only way or the best way. Just showing you a way.

like image 185
David Makogon Avatar answered Sep 30 '22 20:09

David Makogon