AzureTipsAndTricks/blog/tip144.md

31 строка
1.3 KiB
Markdown
Исходник Постоянная ссылка Обычный вид История

2020-10-16 02:29:48 +03:00
---
type: post
title: "Tip 144 - Swiftly understand what versions of .NET are supported on Azure App Service"
excerpt: "Learn how to swiftly understand what versions of .NET are supported on Azure App Services"
tags: [Web]
2020-10-16 02:29:48 +03:00
date: 2018-07-29 17:00:00
---
::: tip
:bulb: Learn more : [App Service Documentation](https://docs.microsoft.com/azure/app-service?WT.mc_id=docs-azuredevtips-azureappsdev).
:::
### Swiftly understand what versions of .NET are supported on Azure App Service
2020-10-16 02:29:48 +03:00
With the release of .NET Framework 4.7.2, I've been asked multiple times it Azure App Services (Websites) supports it yet. While I can quickly answer this question, there will always be a vNext and this question may come up again. So how do you check to see what version of the .NET Framework Azure App Services Supports?
2020-10-16 02:29:48 +03:00
One of the easiest ways that I know of it to use an existing website that you created that is hosted on Azure App Services and go to the **Development Tools** and **Advanced Tools** and open the Kudu Portal
<img :src="$withBase('/files/azureappkudu1.png')">
Then to go the **Debug console** and then **CMD**.
2020-10-16 02:29:48 +03:00
<img :src="$withBase('/files/azureappkudu2.png')">
Type `cd D:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework`
2020-10-16 02:29:48 +03:00
Type `dir`
2020-10-16 02:29:48 +03:00
You'll see a list of the supported .NET Frameworks!
2020-10-16 02:29:48 +03:00
<img :src="$withBase('/files/azureappkudu3.png')">