Loading unreferenced dll MVC Ninject
问题 I have an MVC4 project in which I am using Ninject as the DI Framework. The problem I am having is trying to split my DI bindings from my implementation as i do not want my main web project to reference all of my other projects. I have tried to create a separate project called Bindings which contains ninject modules: public class WebModuleBindings : NinjectModule { public override void Load() { Bind<IStaticDataRepository>().To<StaticDataRepository>(); } } I then load this DLL dynamically in