protected BootstrapperManager(SetupProgram bootstrapper)
        {
            this.Bootstrapper = bootstrapper;

            bootstrapper.DetectComplete += this.Bootstrapper_DetectComplete;
            bootstrapper.PlanBegin      += this.Bootstrapper_PlanBegin;
            bootstrapper.PlanMsiFeature += this.Bootstrapper_PlanMsiFeature;
            bootstrapper.PlanComplete   += Bootstrapper_PlanComplete;
        }
示例#2
0
 public BootstrapperAwareViewModel(SetupProgram bootstrapper)
 {
     this.Bootstrapper = bootstrapper;
 }