skip to Main Content

We are documenting the app, so we found the NET Version but we couldn’t find the MVC version of the project. I need to know how to find it.

I tried with properties of the project but I found the Target Framework: NET 6, and I couldn’t find the MVC version this project is using.

2

Answers


  1. Open Web.config file and find the System.Web.Mvc assembly:

    assembly="System.Web.Mvc, Version=5.0.0.0 ..."
    
    Login or Signup to reply.
  2. Follow the steps below:

    Method One:

    1. Expand Reference in Solution Explorer and find System.Web.Mvc

    2. Right-click System.Web.Mvc and click Properties to display the mvc version in Version

    enter image description here

    enter image description here

    Method Two:

    1. Use Notepad to open the csproj file of the asp.net project

    enter image description here

    1. Find System.Web.Mvc to view the mvc version

    enter image description here

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search