How to register Controller in MVC3?
I have 2 solutions:
MvcApplication (MVC 3 Web Application) with file 'HomeController.cs'
CustomController (Class library) with file 'CustomController.cs'
If i Build 'CustomController' solution and Add reference in MvcApplication solution to this, i can simple use CustomController in application. But how i can do it without 'Add reference' action, just with Assembly.LoadFrom(PathToDll) e.t.c.?
Add Reference...for your main project solution?