DEV Community

Kenichiro Nakamura
Kenichiro Nakamura

Posted on

Check assembly version in Azure WebApp

If you need to verify dll versions in Azure WebApp, do the following.

1. Go to Kudu from "Advanced Tool".

Image description

2. From "Debug console", select Powershell.

3. Run following command. In this case, I try to find all files includes "json.dll".

ls -fi  *json.dll -recurse | % versioninfo
Enter fullscreen mode Exit fullscreen mode

4. You will find version like below.

13.0.1+ae9fe4... 13.0.1.25517     C:\home\site\wwwroot\Newtonsoft.Json.dll  
Enter fullscreen mode Exit fullscreen mode

Top comments (0)