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)

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs

👋 Kindness is contagious

Dive into an ocean of knowledge with this thought-provoking post, revered deeply within the supportive DEV Community. Developers of all levels are welcome to join and enhance our collective intelligence.

Saying a simple "thank you" can brighten someone's day. Share your gratitude in the comments below!

On DEV, sharing ideas eases our path and fortifies our community connections. Found this helpful? Sending a quick thanks to the author can be profoundly valued.

Okay