@joebigelow / wix / commits / 77041048

Update WixBA to Mba.Core 4.0.9.

Sean Hall committed May 5, 2021 at 15:56 UTC 77041048dbaebaa8f28233cb8e8d04540d599956
11 files changed +15 -7
src/WixToolset.WixBA/InstallationViewModel.cs
+1
@@ -11,6 +11,7 @@ namespace WixToolset.WixBA
11 using System.Windows.Input;
12 using IO = System.IO;
13 using WixToolset.BootstrapperCore;
14 + using WixToolset.Mba.Core;
15
16 /// <summary>
17 /// The states of detection.
src/WixToolset.WixBA/Model.cs
+1
@@ -6,6 +6,7 @@ namespace WixToolset.WixBA
6 using System.Collections.Generic;
7 using System.Net;
8 using WixToolset.BootstrapperCore;
9 + using WixToolset.Mba.Core;
10
11 /// <summary>
12 /// The model.
src/WixToolset.WixBA/ProgressViewModel.cs
+1
@@ -6,6 +6,7 @@ using System.ComponentModel;
6 using System.Diagnostics;
7 using System.Text.RegularExpressions;
8 using WixToolset.BootstrapperCore;
9 +using WixToolset.Mba.Core;
10
11 namespace WixToolset.WixBA
12 {
src/WixToolset.WixBA/Properties/AssemblyInfo.cs
+1 -1
@@ -3,7 +3,7 @@
3 using System;
4 using System.Reflection;
5 using System.Runtime.InteropServices;
6 -using WixToolset.BootstrapperCore;
6 +using WixToolset.Mba.Core;
7 using WixToolset.WixBA;
8
9
src/WixToolset.WixBA/RootViewModel.cs
-2
@@ -3,8 +3,6 @@
3 namespace WixToolset.WixBA
4 {
5 using System;
6 - using System.Diagnostics;
7 - using System.Reflection;
6 using System.Windows;
7 using System.Windows.Input;
8 using System.Windows.Threading;
src/WixToolset.WixBA/UpdateViewModel.cs
+1
@@ -6,6 +6,7 @@ namespace WixToolset.WixBA
6 using System.ComponentModel;
7 using System.Windows.Input;
8 using WixToolset.BootstrapperCore;
9 + using WixToolset.Mba.Core;
10
11 /// <summary>
12 /// The states of the update view model.
src/WixToolset.WixBA/WixBA.BootstrapperCore.config
+2 -2
@@ -3,8 +3,8 @@
3
4 <configuration>
5 <configSections>
6 - <sectionGroup name="wix.bootstrapper" type="WixToolset.BootstrapperCore.BootstrapperSectionGroup, WixToolset.BootstrapperCore">
7 - <section name="host" type="WixToolset.BootstrapperCore.HostSection, WixToolset.BootstrapperCore" />
6 + <sectionGroup name="wix.bootstrapper" type="WixToolset.Mba.Core.BootstrapperSectionGroup, WixToolset.Mba.Core">
7 + <section name="host" type="WixToolset.Mba.Core.HostSection, WixToolset.Mba.Core" />
8 </sectionGroup>
9 </configSections>
10 <startup useLegacyV2RuntimeActivationPolicy="true">
src/WixToolset.WixBA/WixBA.cs
+1
@@ -9,6 +9,7 @@ namespace WixToolset.WixBA
9 using System.Net;
10 using System.Text;
11 using WixToolset.BootstrapperCore;
12 + using WixToolset.Mba.Core;
13
14 using Threading = System.Windows.Threading;
15 using WinForms = System.Windows.Forms;
src/WixToolset.WixBA/WixBAFactory.cs
+1
@@ -3,6 +3,7 @@
3 namespace WixToolset.WixBA
4 {
5 using WixToolset.BootstrapperCore;
6 + using WixToolset.Mba.Core;
7
8 public class WixBAFactory : BaseBootstrapperApplicationFactory
9 {
src/WixToolset.WixBA/WixToolset.WixBA.csproj
+4 -1
@@ -57,7 +57,10 @@
57 <Reference Include="System.Xaml" />
58 <Reference Include="WindowsBase" />
59 <Reference Include="WixToolset.BootstrapperCore">
60 - <HintPath>..\..\packages\WixToolset.BootstrapperCore.4.0.5\lib\net20\WixToolset.BootstrapperCore.dll</HintPath>
60 + <HintPath>..\..\packages\WixToolset.BootstrapperCore.4.0.8\lib\net20\WixToolset.BootstrapperCore.dll</HintPath>
61 + </Reference>
62 + <Reference Include="WixToolset.Mba.Core">
63 + <HintPath>..\..\packages\WixToolset.Mba.Core.4.0.9\lib\net20\WixToolset.Mba.Core.dll</HintPath>
64 </Reference>
65 </ItemGroup>
66 <ItemGroup>
src/WixToolset.WixBA/packages.config
+2 -1
@@ -1,5 +1,6 @@
1 <?xml version="1.0" encoding="utf-8"?>
2 <packages>
3 <package id="Nerdbank.GitVersioning" version="2.1.65" targetFramework="net45" developmentDependency="true" />
4 - <package id="WixToolset.BootstrapperCore" version="4.0.5" targetFramework="net45" />
4 + <package id="WixToolset.BootstrapperCore" version="4.0.8" targetFramework="net45" />
5 + <package id="WixToolset.Mba.Core" version="4.0.9" targetFramework="net45" />
6 </packages>
\ No newline at end of file