DEV Community

Kenichiro Nakamura
Kenichiro Nakamura

Posted on

4 1

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)

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more

👋 Kindness is contagious

Explore a sea of insights with this enlightening post, highly esteemed within the nurturing DEV Community. Coders of all stripes are invited to participate and contribute to our shared knowledge.

Expressing gratitude with a simple "thank you" can make a big impact. Leave your thanks in the comments!

On DEV, exchanging ideas smooths our way and strengthens our community bonds. Found this useful? A quick note of thanks to the author can mean a lot.

Okay