コード例 #1
0
ファイル: Builder.cs プロジェクト: Zahovay/MOSA-Project
 public Builder(Options options, AppLocations appLocations, IBuilderEvent builderEvent)
     : base(options, appLocations)
 {
     Counters = new List<string>();
     traceListener = new BuilderEventListener(this);
     BuilderEvent = builderEvent;
 }
コード例 #2
0
ファイル: Builder.cs プロジェクト: cuteofdragon/MOSA-Project
 public Builder(LauncherOptions options, AppLocations appLocations, IBuilderEvent builderEvent)
     : base(options, appLocations)
 {
     Counters      = new List <string>();
     traceListener = new BuilderEventListener(this);
     BuilderEvent  = builderEvent;
 }
コード例 #3
0
 public Builder(Options options, AppLocations appLocations, IBuilderEvent builderEvent)
 {
     Log           = new List <string>();
     Counters      = new List <string>();
     traceListener = new BuilderEventListener(this);
     Options       = options;
     AppLocations  = appLocations;
     BuilderEvent  = builderEvent;
 }
コード例 #4
0
ファイル: Builder.cs プロジェクト: yonglehou/MOSA-Project
 public Builder(Options options, AppLocations appLocations, IBuilderEvent builderEvent)
 {
     Log = new List<string>();
     Counters = new List<string>();
     traceListener = new BuilderEventListener(this);
     Options = options;
     AppLocations = appLocations;
     BuilderEvent = builderEvent;
 }