Reputation: 28500
As above... How could you find out, given the source code, what version of MVC an application is?
Upvotes: 0
Views: 135
Reputation: 9881
According to this answer, you can programmatically get the version of the assembly with the following:
typeof (Controller).Assembly.GetName().Version
Upvotes: 1
Reputation: 5018
If you right click on the MVC reference in the web application and go to properties, there should be version property of the referenced MVC dll.
Upvotes: 1