Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Check project build in MVC3 or in MVC4

I got a project and I want to know about the project i.e. it is build in Asp.net MVC3 or in Asp.net MVC4? How can I find its build process i.e. made in MVC3 or in MVC4?

like image 654
Gaurav Agrawal Avatar asked Mar 08 '13 06:03

Gaurav Agrawal


People also ask

What is mvc4?

ASP.NET MVC 4 is a framework for building scalable, standards-based web applications using well-established design patterns and the power of the ASP.NET and the . NET framework. This new, fourth version of the framework focuses on making mobile web application development easier.


1 Answers

Check project references (or bin folder), look for "System.Web.Mvc" and open its properties. Then look the "Version" property. If it is 4.0.0.0 is MVC 4, if it is 3.0.0.0 is of course MVC 3.

like image 84
Peter Stegnar Avatar answered Sep 17 '22 21:09

Peter Stegnar