I created a project using ASP.Net MVC 5, EF 6, and .Net 4.5.1. At some point, I needed to change the namespace in which the project is located, from "MyTestProject" to "MyRealProject".
After making these changes to the website, I now get several errors in several of my submissions. _ChangePasswordPartial.cshtml can no longer find "@model Microsoft.AspNet.Identity.ManageUserViewModel" and _SetPasswordPartial.cshtml cannot find "MyRealProject.ManageUserViewModel"
No, where in the project can you find a file containing the ManageUserViewModel class. Before I changed the namespace, it was found, but now it is not. What for? Where did he go and how do I fix it?
source share