I have downloaded the ASP.Net MVC2 RTM source code and I'm trying to run my application against it. For some reason my .ascx controls keep using the non generic ViewUserControl instead of the generic version.
My control includes the following line at the top: Inherits="System.Web.Mvc.ViewUserControl<ExistingApplicationLoginModel>"
If I run the project against the MVC2 dll in the GAC it works perfectly. I'm only having problems when trying to run it against the source.
Has anyone else experienced this problem? How do I fix it?
Thanks for the help in advance.