I\'m using Prism V2 with a DirectoryModuleCatalog and I need the modules to be initialized in a certain order. The desired order is specified with an attribute on each IModu
You can use the ModuleDependency attribute on your module class to tell the loader that your module depends on other modules:
ModuleDependency
[ModuleDependency("SomeModule")] [ModuleDependency("SomeOtherModule")] public class MyModule : IModule { }