How to include controllers and views from an external project into MVC6?
问题 I have some modules which has controllers and views. It is basically an extension for my web application. Each module is in a class library. I want to load these assemblies from my web application. But I'm without luck here. My solutions file structure is like: src | |-- Web.Common (Class Library Project) | |- Files like: filters, my own controller etc... | |-- WebApplication (ASP.NET5 WebSite) | |- wwwroot | |- Controllers | |- Views | |- etc... | |-- Module 1 (Class Library Project) | |-