When opening, compiling and running a VS2010 MVC.net 3 project in VS2012, the views cannot be found.
The project compiles correct, however the RazorGenerator ViewEngine does not find the views, or does not even kick in...
Comments: * There're are issues in some old Mvc project templates where the SpecificVersion for System.Web.WebPages assembly is set to false. This causes issues. To fix this, re-add the System.Web.WebPages assembly pointing to the right version (1.0 for Mvc 3 projects, 2.0 for Mvc 4 projects) * RazorGenerator 1.5 targets the parser based on the version of Mvc used. So issues with incorrect view generation should be fixed. * For Mvc apps consuming RazorGenerator.MVC, ensure it has the right binding redirects in the root web.config. The RazorGenerator assembly is compiled against Mvc 3, but the right set of binding redirects should ensure it does the view lookup correctly. If you're still seeing this issue, please feel free to reopen this
The project compiles correct, however the RazorGenerator ViewEngine does not find the views, or does not even kick in...
Comments: * There're are issues in some old Mvc project templates where the SpecificVersion for System.Web.WebPages assembly is set to false. This causes issues. To fix this, re-add the System.Web.WebPages assembly pointing to the right version (1.0 for Mvc 3 projects, 2.0 for Mvc 4 projects) * RazorGenerator 1.5 targets the parser based on the version of Mvc used. So issues with incorrect view generation should be fixed. * For Mvc apps consuming RazorGenerator.MVC, ensure it has the right binding redirects in the root web.config. The RazorGenerator assembly is compiled against Mvc 3, but the right set of binding redirects should ensure it does the view lookup correctly. If you're still seeing this issue, please feel free to reopen this