Downgrade/convert mvc 4 to mvc 3

心已入冬 提交于 2019-12-02 02:11:20

I doubt you'll find an official guide or tool, you'll have to do it manually. Personally, I would do the following:

  • Start a new MVC 3 Project (MVC3 is available via nuget)
  • Copy your files from one to the other
  • Fix any compilation issues
  • Use the publish site feature to publish somewhere locally (this will hopefully find compilation issues in your Razor views which don't get found during the project build)
  • Test the site fully!

Sorry it's not more helpful, but I don't think people generally design for the downgrade process.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!