This section provides an overview of what asp.net-mvc-5 is, and why a developer might want to use it.
It should also mention any large subjects within asp.net-mvc-5, and link out to the related topics. Since the Documentation for asp.net-mvc-5 is new, you may need to create initial versions of those related topics.
To install/update MVC version, follow these steps:
In visual studio, open the Package Manager console (use CTRL + Q, and type package manager console)
In the console appearing, enter the following after the console cursor showing PM>
:
Install-Package Microsoft.AspNet.Mvc -Version 5.2.3
Note: specify the version you want. In the above example we used 5.2.3 (the latest version when these instructions were written)
Verify the installation by using the following command in the package manager console:
Get-Package -ListAvailable -Filter mvc
2.Filter overrides You can now override which filters apply to a given action method or controller by specifying an override filter.