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