I need to upgrade an application that runs on ASP.NET MVC 1 to ASP.NET MVC 4.
The new application still uses the Webforms Viewengine. It uses StructureMap for Dependency Injection.
If possible I would like to upgrade manually.
For upgrading from ASP.NET 1 to ASP.NET 2 I found the white paper
http://www.asp.net/whitepapers/aspnet-mvc2-upgrade-notes
The steps described in the document seem to be of little risk:
- Fiddle with web.csproj
- Replace Version=1.0.0.0 in web.config by Version=2.0.0.0
- Reference System.Web.Mvc (v2.0.0.0) in the project
- chnange bindingRedirect in web.config
- update css and js files
What about upgrading to MVC 4: Will there be different steps involved?