LoginSignup
2
2

More than 5 years have passed since last update.

Azure App Serviceの.NET Frameworkバージョンを確認する方法

Last updated at Posted at 2018-09-10

まもなくAzure App Serviceは.NET Framework 4.7.2に

Azure App Serviceに .Net Framework 4.7.2が適用間近となっています。
[.NET Framework 4.7.2 update coming to Azure App Service apps]
https://azure.microsoft.com/ja-jp/updates/net-framework-4-7-2-update-coming-to-azure-app-service-apps/

しかし、実際に適用されているかどうか確認できなければ当然アップデートできないので、
Kuduを使用して確認する必要があります。

.NET Framework バージョンを確認する方法(powershell)

アップデート対象のApp Serviceを選択→高度なツール(Kudu)へ移動

image.png

続いで、Debug Console→PowerShellを選択

image.png

Powershell画面が表示されたら、下記のコマンドを入力。

Get-ChildItem "D:\Program Files (x86)\Reference Assemblies\Microsoft\framework\.NETFramework" 

↓この場合、4.7.1までがインストールされています。

image.png

.NET Framework バージョンを確認する方法(コンソール)

より簡単な方法として、下記でも可能。

image.png

dir  "D:\Program Files (x86)\Reference Assemblies\Microsoft\framework\.NETFramework" 
2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2