private void DetectComplete(object sender, DetectCompleteEventArgs e) { // Parse the command line string before any planning. this.ParseCommandLine(); if (LaunchAction.Uninstall == WixBA.Model.Command.Action) { WixBA.Model.Engine.Log(LogLevel.Verbose, "Invoking automatic plan for uninstall"); WixBA.Plan(LaunchAction.Uninstall); } else if (Hresult.Succeeded(e.Status)) { if (this.Downgrade) { // TODO: What behavior do we want for downgrade? this.root.State = InstallationState.DetectedNewer; } if (LaunchAction.Layout == WixBA.Model.Command.Action) { WixBA.PlanLayout(); } else if (WixBA.Model.Command.Display != Display.Full) { // If we're not waiting for the user to click install, dispatch plan with the default action. WixBA.Model.Engine.Log(LogLevel.Verbose, "Invoking automatic plan for non-interactive mode."); WixBA.Plan(WixBA.Model.Command.Action); } } else { this.root.State = InstallationState.Failed; } }
private void DetectComplete(object sender, DetectCompleteEventArgs e) { // Parse the command line string before any planning. this.ParseCommandLine(); if (LaunchAction.Uninstall == WixBA.Model.Command.Action) { WixBA.Model.Engine.Log(LogLevel.Verbose, "Invoking automatic plan for uninstall"); WixBA.Plan(LaunchAction.Uninstall); } else if (Hresult.Succeeded(e.Status)) { // block if CLR v2 isn't available; sorry, it's needed for the MSBuild tasks if (WixBA.Model.Engine.EvaluateCondition("NETFRAMEWORK35_SP_LEVEL < 1")) { string message = "WiX Toolset requires the .NET Framework 3.5.1 Windows feature to be enabled."; WixBA.Model.Engine.Log(LogLevel.Verbose, message); if (Display.Full == WixBA.Model.Command.Display) { WixBA.Dispatcher.Invoke((Action) delegate() { MessageBox.Show(message, "WiX Toolset", MessageBoxButton.OK, MessageBoxImage.Error); if (null != WixBA.View) { WixBA.View.Close(); } } ); } this.root.State = InstallationState.Failed; return; } if (this.Downgrade) { // TODO: What behavior do we want for downgrade? this.root.State = InstallationState.DetectedNewer; } if (LaunchAction.Layout == WixBA.Model.Command.Action) { WixBA.PlanLayout(); } else if (WixBA.Model.Command.Display != Display.Full) { // If we're not waiting for the user to click install, dispatch plan with the default action. WixBA.Model.Engine.Log(LogLevel.Verbose, "Invoking automatic plan for non-interactive mode."); WixBA.Plan(WixBA.Model.Command.Action); } } else { this.root.State = InstallationState.Failed; } }
private void DetectComplete(object sender, DetectCompleteEventArgs e) { // Parse the command line string before any planning. this.ParseCommandLine(); this.root.InstallState = InstallationState.Waiting; if (LaunchAction.Uninstall == WixBA.Model.Command.Action && ResumeType.Arp != WixBA.Model.Command.Resume) // MSI and WixStdBA require some kind of confirmation before proceeding so WixBA should, too. { WixBA.Model.Engine.Log(LogLevel.Verbose, "Invoking automatic plan for uninstall"); WixBA.Plan(LaunchAction.Uninstall); } else if (Hresult.Succeeded(e.Status)) { // TODO: remove this when v4 really doesn't depend on .NET 3.5. // block if CLR v2 isn't available; sorry, it's needed for the MSBuild tasks if (WixBA.Model.Engine.EvaluateCondition("NOT NETFRAMEWORK35_SP_LEVEL")) { string message = "WiX Toolset requires the .NET Framework 3.5.1 Windows feature to be enabled."; WixBA.Model.Engine.Log(LogLevel.Verbose, message); if (Display.Full == WixBA.Model.Command.Display) { WixBA.Dispatcher.Invoke((Action) delegate() { MessageBox.Show(message, "WiX Toolset", MessageBoxButton.OK, MessageBoxImage.Error); if (null != WixBA.View) { WixBA.View.Close(); } } ); } this.root.InstallState = InstallationState.Failed; return; } if (this.Downgrade) { this.root.DetectState = DetectionState.Newer; IEnumerable <PackageInfo> relatedPackages = WixBA.Model.Bootstrapper.BAManifest.Bundle.Packages.Values.Where(p => p.Type == PackageType.UpgradeBundle); Version installedVersion = relatedPackages.Any() ? new Version(relatedPackages.Max(p => p.Version)) : null; if (installedVersion != null && installedVersion < new Version(4, 1) && installedVersion.Build > 10) { this.DowngradeMessage = "You must uninstall WiX v" + installedVersion + " before you can install this."; } else { this.DowngradeMessage = "There is already a newer version of WiX installed on this machine."; } } if (LaunchAction.Layout == WixBA.Model.Command.Action) { WixBA.PlanLayout(); } else if (WixBA.Model.Command.Display != Display.Full) { // If we're not waiting for the user to click install, dispatch plan with the default action. WixBA.Model.Engine.Log(LogLevel.Verbose, "Invoking automatic plan for non-interactive mode."); WixBA.Plan(WixBA.Model.Command.Action); } } else { this.root.InstallState = InstallationState.Failed; } // Force all commands to reevaluate CanExecute. // InvalidateRequerySuggested must be run on the UI thread. root.Dispatcher.Invoke(new Action(CommandManager.InvalidateRequerySuggested)); }