예제 #1
0
 public AppSetupOptions()
 {
     this.ConfigFilePath            = "./app.json";
     this.AllAppModuleTypeCollector = new DefaultAllAppModuleTypeCollectionor();
 }
예제 #2
0
 /// <summary>
 /// 构造函数
 /// </summary>
 /// <param name="options"></param>
 public AppSetup(AppSetupOptions options)
 {
     this.ConfigFilePath            = options.ConfigFilePath;
     this.allAppModuleTypeCollector = options.AllAppModuleTypeCollector;
 }