If you need to verify dll versions in Azure WebApp, do the following.
1. Go to Kudu from "Advanced Tool".
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
4. You will find version like below.
13.0.1+ae9fe4... 13.0.1.25517 C:\home\site\wwwroot\Newtonsoft.Json.dll
Top comments (0)