Migrating from Asp.net MVC2 to MVC4
asp.net-mvc
Solution
Looks like there is now a solution posted to a similar question that indicates that there exist two packages that can migrate from MVC 2 to MVC 3 and then from MVC 3 to MVC 4.
Here is what you'll need based on my experience doing the same upgrade recently:
- Ensure that you have upgraded your solution from VS2008 to VS2010
- ASP.NET MVC 3 Application Upgrader - A Standalone package for upgrading MVC2 -> MVC3
- UpgradeMvc3ToMvc4 - A nuget package for upgrading from MVC3 -> MVC4
Having used both of these recently I can vouch for them in that they worked very well for me.
Problem
I want to convert MVC2 web site to MVC4. I know there are tools to help with conversion from MV2 to MVC3 but I cannot find any tools or steps needed to convert from MVC2 to MVC4. Please point me to some article/blog which can provide me some more information to help with this process.