Ejemplo n.º 1
0
 public Starter(Options options, AppLocations appLocations, string imagefile, IStarterEvent launcherEvent, BaseLinker linker)
     : base(options, appLocations)
 {
     ImageFile     = imagefile;
     LauncherEvent = launcherEvent;
     Linker        = linker;
 }
Ejemplo n.º 2
0
 public Starter(Options options, AppLocations appLocations, string imagefile, IStarterEvent launcherEvent, BaseLinker linker)
     : base(options, appLocations)
 {
     ImageFile = imagefile;
     LauncherEvent = launcherEvent;
     Linker = linker;
 }
Ejemplo n.º 3
0
 public Starter(Options options, AppLocations appLocations, string imagefile, IStarterEvent launcherEvent)
     : base(options, appLocations)
 {
     ImageFile     = imagefile;
     LauncherEvent = launcherEvent;
 }
Ejemplo n.º 4
0
 public Starter(Options options, AppLocations appLocations, string imagefile, IStarterEvent launcherEvent)
     : base(options, appLocations)
 {
     ImageFile = imagefile;
     LauncherEvent = launcherEvent;
 }
Ejemplo n.º 5
0
 public Starter(Options options, AppLocations appLocations, IStarterEvent launcherEvent, BaseLinker linker)
     : base(options, appLocations)
 {
     LauncherEvent = launcherEvent;
     Linker        = linker;
 }
Ejemplo n.º 6
0
 public Starter(Options options, AppLocations appLocations, IStarterEvent launcherEvent)
     : base(options, appLocations)
 {
     LauncherEvent = launcherEvent;
 }