We have a legacy Web Forms application which we've recently converted from a website project to a web application project.
The Web Forms project is the "startup" project of the solution.
There is an MVC project which is a reference to the Web Forms project.
In the MVC project, there are several view (cshtml) files that are set as "Embedded Resource". When the application is debugged locally in visual studio, these files are found and compiled and the pages are visible.
When the Web Forms project is published (locally), I get an error that says "The view 'Index' or its master was not found or no view engine supports the searched locations. The following locations were searched:"
etc
The question is how come this works on IIS Express but not on IIS 10? Is there some config settings I can update to make this work?