From dd40005b0cc376410cd931c9790bdd69551e9aa1 Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Fri, 15 Feb 2019 18:53:49 -0600 Subject: Integrate into latest v4 (2019/02/15). --- src/WixToolset.WixBA/UpdateViewModel.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/WixToolset.WixBA/UpdateViewModel.cs') diff --git a/src/WixToolset.WixBA/UpdateViewModel.cs b/src/WixToolset.WixBA/UpdateViewModel.cs index 6b60112c..cb6c0ad9 100644 --- a/src/WixToolset.WixBA/UpdateViewModel.cs +++ b/src/WixToolset.WixBA/UpdateViewModel.cs @@ -1,11 +1,11 @@ // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. -namespace WixToolset.UX +namespace WixToolset.WixBA { using System; using System.ComponentModel; using System.Windows.Input; - using WixToolset.Bootstrapper; + using WixToolset.BootstrapperCore; /// /// The states of the update view model. @@ -151,7 +151,7 @@ namespace WixToolset.UX } } - private void DetectUpdateBegin(object sender, Bootstrapper.DetectUpdateBeginEventArgs e) + private void DetectUpdateBegin(object sender, DetectUpdateBeginEventArgs e) { // Don't check for updates if: // the first check failed (no retry) @@ -164,7 +164,7 @@ namespace WixToolset.UX } } - private void DetectUpdate(object sender, Bootstrapper.DetectUpdateEventArgs e) + private void DetectUpdate(object sender, DetectUpdateEventArgs e) { // The list of updates is sorted in descending version, so the first callback should be the largest update available. // This update should be either larger than ours (so we are out of date), the same as ours (so we are current) @@ -186,7 +186,7 @@ namespace WixToolset.UX e.StopProcessingUpdates = true; } - private void DetectUpdateComplete(object sender, Bootstrapper.DetectUpdateCompleteEventArgs e) + private void DetectUpdateComplete(object sender, DetectUpdateCompleteEventArgs e) { // Failed to process an update, allow the existing bundle to still install. if ((UpdateState.Failed != this.State) && !Hresult.Succeeded(e.Status)) -- cgit v1.2.3-55-g6feb