How do I see which version of MVC is installed?

Viewed 56996

How can I tell which version of MVC (i.e. MVC 2 Beta, MVC 2 RC) is installed on my machine?

8 Answers

Look under Control Panel > Add/Remove Programs

Unless I got you wrong, checking the version displayed for System.Web.Mvc in your windows\assembly folder should help you.

You may have several versions of .NET installed on your machine. If you are using Windows 10 this is how to find versions 1 through 4:

From the Start menu > choose Run > enter Regedit > select Ok. You must have administrative credentials to run Regedit.

In the Registry Editor open the following subkey: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Framework Setup\NDP

enter image description here

Find more info here and here. Also if you were wondering what the latest version of .Net is - here is a handy list.

Related