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