I upgrade my MVC4 project to MVC 5. I have problem with embedded views witch is not founded. When MVC try to find view it calls MvcCodeRouting.Web.Mvc.ViewEngineWrapper.FindPartialView -> FindView -> wrappedEngine.FindPartialView witch not call EmbeddedViewsVirtualPathProvider.FileExists. I check wrappedEngine and it has VirtualPathProvider set to EmbeddedViewsVirtualPathProvider. And when I try to find view witch is local (standard file exists) method EmbeddedViewsVirtualPathProvider.FileExists is called.
Does anyone know what is wrong with MVC 5?
Thanks