Is the string parameter used in a ModuleName and ModuleDependency attributes the name of the module class ,the name of the module assembly, or full name of the module class.
If there are two module projects one named Module1Project and the other named Module2Project.
In Module1Project the name of the module class is Module
1 public class Module1 :IModule
In Module2Project the name of the module class is Module2
public class Module2 :IModule
So what would be the string parameter used in the ModuleNameAttribute for the both module classes be?
If Module1 had to be loaded before Module2,in the Module2 class what would be the string parameter bein the ModuleDependencyAttribute place above the Module2 class?
All the demo examples I fould the Project and the module class in the project had the same name.