What aspnet mvc version is my mvc application using - Part 2

1 year ago
5

This is my new youtyube channel
https://youtu.be/8gbjcFIdIoI
Please subscribe

In this video we will discuss about, How to determine what version of asp.net mvc is being used by an existing mvc application

There are 2 ways to do this
1. At design time - In the solution explorer, expand "References" folder. Right click on System.Web.Mvc assembly and select "Properties" and you can find the version that's used.

2. At runtime using code - typeof(Controller).Assembly.GetName().Version.ToString()

Loading comments...