How do you directly upgrade ASP.NET MVC1 to MVC3?

I have an ASP.NET MVC1 project and you want to upgrade it directly to MVC3. I assume there are two ways:

  • Update directly from 1 to 3
  • Upgrade to 2, and then perform a second upgrade to 3

Which path has you traveled the most?

+4
source share
1 answer

If you use the ASP.NET Project update tool , you can only do the second path right now, as indicated in this blog :

The tool does not support Visual Studio 2008 solutions, MVC 1 projects, or projects targeting .NET 3.5. If you have an MVC 1.0 project, you can use the old version of this tool to convert it to MVC 2.

I assume that you can manually upgrade directly to MVC 3, but why do you need to solve the problem when you can run two wizards to update the project for you.

+7
source

Source: https://habr.com/ru/post/1338282/


All Articles