I have a multi tenant application mvc4 with modules. What I want to do is to hide complexity from modules. I want to not having some references like ninject in modules and manage dependency injection in core application. In just a modular system without lieutenant feature, I use ninject.extension.xml for this purpose and load xml file in kernel and everything works well. But when I want to implement multi tenant system with hierarchy kernels (i have a parent kernel and some child kernel in it) in the childkernel loading xml file to child kernel does not occurs .
How can I solve this problem?
DirectoryInfo directoryInfo = new DirectoryInfo(bpath);
var modules = directoryInfo.GetFiles("ModuleName.dll");
Assembly assembly = Assembly.LoadFrom(modules[0].FullName);
AppDomain.CurrentDomain.Load(assembly.GetName());
Kernel.Load(Assembly.LoadFile(modules[0].FullName));
Kernel.Load(XMLFile);