Beispiel #1
0
 public Installer(Bootstrapper boots)
 {
     Boots = boots;
 }
Beispiel #2
0
 public WindowsUrlResolver(Bootstrapper boots) : base(boots)
 {
 }
Beispiel #3
0
 public UrlResolver(Bootstrapper boots)
 {
     Boots = boots;
 }
Beispiel #4
0
 public VsixInstaller(Bootstrapper boots) : base(boots)
 {
 }
Beispiel #5
0
 public AsyncProcess(Bootstrapper boots, string cmd, params string [] argumentList)
     : this(boots)
 {
     Command   = cmd;
     Arguments = string.Join(" ", argumentList);
 }
Beispiel #6
0
 public AsyncProcess(Bootstrapper boots)
 {
     this.boots = boots;
 }