diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2021-05-05 17:54:39 -0500 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2021-05-11 19:11:19 -0500 |
commit | 0d21d619788c146dc32fced5350ac955bacd7c17 (patch) | |
tree | 3f453730fd2a4ab2e8aa377c7842f39858fb6f4b | |
parent | 77041048dbaebaa8f28233cb8e8d04540d599956 (diff) | |
download | wix-0d21d619788c146dc32fced5350ac955bacd7c17.tar.gz wix-0d21d619788c146dc32fced5350ac955bacd7c17.tar.bz2 wix-0d21d619788c146dc32fced5350ac955bacd7c17.zip |
Update WixBA to Mba.Core 4.0.13.
-rw-r--r-- | src/WixToolset.WixBA/InstallationViewModel.cs | 1 | ||||
-rw-r--r-- | src/WixToolset.WixBA/Model.cs | 1 | ||||
-rw-r--r-- | src/WixToolset.WixBA/ProgressViewModel.cs | 1 | ||||
-rw-r--r-- | src/WixToolset.WixBA/RootViewModel.cs | 2 | ||||
-rw-r--r-- | src/WixToolset.WixBA/UpdateViewModel.cs | 1 | ||||
-rw-r--r-- | src/WixToolset.WixBA/WixBA.BootstrapperCore.config | 4 | ||||
-rw-r--r-- | src/WixToolset.WixBA/WixBA.cs | 1 | ||||
-rw-r--r-- | src/WixToolset.WixBA/WixBAFactory.cs | 1 | ||||
-rw-r--r-- | src/WixToolset.WixBA/WixToolset.WixBA.csproj | 7 | ||||
-rw-r--r-- | src/WixToolset.WixBA/packages.config | 3 |
10 files changed, 7 insertions, 15 deletions
diff --git a/src/WixToolset.WixBA/InstallationViewModel.cs b/src/WixToolset.WixBA/InstallationViewModel.cs index b83f7012..1ccb2485 100644 --- a/src/WixToolset.WixBA/InstallationViewModel.cs +++ b/src/WixToolset.WixBA/InstallationViewModel.cs | |||
@@ -10,7 +10,6 @@ namespace WixToolset.WixBA | |||
10 | using System.Windows; | 10 | using System.Windows; |
11 | using System.Windows.Input; | 11 | using System.Windows.Input; |
12 | using IO = System.IO; | 12 | using IO = System.IO; |
13 | using WixToolset.BootstrapperCore; | ||
14 | using WixToolset.Mba.Core; | 13 | using WixToolset.Mba.Core; |
15 | 14 | ||
16 | /// <summary> | 15 | /// <summary> |
diff --git a/src/WixToolset.WixBA/Model.cs b/src/WixToolset.WixBA/Model.cs index 55a0f84d..02d329d4 100644 --- a/src/WixToolset.WixBA/Model.cs +++ b/src/WixToolset.WixBA/Model.cs | |||
@@ -5,7 +5,6 @@ namespace WixToolset.WixBA | |||
5 | using System; | 5 | using System; |
6 | using System.Collections.Generic; | 6 | using System.Collections.Generic; |
7 | using System.Net; | 7 | using System.Net; |
8 | using WixToolset.BootstrapperCore; | ||
9 | using WixToolset.Mba.Core; | 8 | using WixToolset.Mba.Core; |
10 | 9 | ||
11 | /// <summary> | 10 | /// <summary> |
diff --git a/src/WixToolset.WixBA/ProgressViewModel.cs b/src/WixToolset.WixBA/ProgressViewModel.cs index a2320498..081688ac 100644 --- a/src/WixToolset.WixBA/ProgressViewModel.cs +++ b/src/WixToolset.WixBA/ProgressViewModel.cs | |||
@@ -5,7 +5,6 @@ using System.Collections.Generic; | |||
5 | using System.ComponentModel; | 5 | using System.ComponentModel; |
6 | using System.Diagnostics; | 6 | using System.Diagnostics; |
7 | using System.Text.RegularExpressions; | 7 | using System.Text.RegularExpressions; |
8 | using WixToolset.BootstrapperCore; | ||
9 | using WixToolset.Mba.Core; | 8 | using WixToolset.Mba.Core; |
10 | 9 | ||
11 | namespace WixToolset.WixBA | 10 | namespace WixToolset.WixBA |
diff --git a/src/WixToolset.WixBA/RootViewModel.cs b/src/WixToolset.WixBA/RootViewModel.cs index 4ca20bf5..8cff7274 100644 --- a/src/WixToolset.WixBA/RootViewModel.cs +++ b/src/WixToolset.WixBA/RootViewModel.cs | |||
@@ -6,7 +6,7 @@ namespace WixToolset.WixBA | |||
6 | using System.Windows; | 6 | using System.Windows; |
7 | using System.Windows.Input; | 7 | using System.Windows.Input; |
8 | using System.Windows.Threading; | 8 | using System.Windows.Threading; |
9 | using WixToolset.BootstrapperCore; | 9 | using WixToolset.Mba.Core; |
10 | 10 | ||
11 | /// <summary> | 11 | /// <summary> |
12 | /// The errors returned from the engine | 12 | /// The errors returned from the engine |
diff --git a/src/WixToolset.WixBA/UpdateViewModel.cs b/src/WixToolset.WixBA/UpdateViewModel.cs index 4a97afec..445a9b1a 100644 --- a/src/WixToolset.WixBA/UpdateViewModel.cs +++ b/src/WixToolset.WixBA/UpdateViewModel.cs | |||
@@ -5,7 +5,6 @@ namespace WixToolset.WixBA | |||
5 | using System; | 5 | using System; |
6 | using System.ComponentModel; | 6 | using System.ComponentModel; |
7 | using System.Windows.Input; | 7 | using System.Windows.Input; |
8 | using WixToolset.BootstrapperCore; | ||
9 | using WixToolset.Mba.Core; | 8 | using WixToolset.Mba.Core; |
10 | 9 | ||
11 | /// <summary> | 10 | /// <summary> |
diff --git a/src/WixToolset.WixBA/WixBA.BootstrapperCore.config b/src/WixToolset.WixBA/WixBA.BootstrapperCore.config index 21dc2efd..da8f8028 100644 --- a/src/WixToolset.WixBA/WixBA.BootstrapperCore.config +++ b/src/WixToolset.WixBA/WixBA.BootstrapperCore.config | |||
@@ -3,8 +3,8 @@ | |||
3 | 3 | ||
4 | <configuration> | 4 | <configuration> |
5 | <configSections> | 5 | <configSections> |
6 | <sectionGroup name="wix.bootstrapper" type="WixToolset.Mba.Core.BootstrapperSectionGroup, WixToolset.Mba.Core"> | 6 | <sectionGroup name="wix.bootstrapper" type="WixToolset.Mba.Host.BootstrapperSectionGroup, WixToolset.Mba.Host"> |
7 | <section name="host" type="WixToolset.Mba.Core.HostSection, WixToolset.Mba.Core" /> | 7 | <section name="host" type="WixToolset.Mba.Host.HostSection, WixToolset.Mba.Host" /> |
8 | </sectionGroup> | 8 | </sectionGroup> |
9 | </configSections> | 9 | </configSections> |
10 | <startup useLegacyV2RuntimeActivationPolicy="true"> | 10 | <startup useLegacyV2RuntimeActivationPolicy="true"> |
diff --git a/src/WixToolset.WixBA/WixBA.cs b/src/WixToolset.WixBA/WixBA.cs index 509b70f7..2d680c7e 100644 --- a/src/WixToolset.WixBA/WixBA.cs +++ b/src/WixToolset.WixBA/WixBA.cs | |||
@@ -8,7 +8,6 @@ namespace WixToolset.WixBA | |||
8 | using System.IO; | 8 | using System.IO; |
9 | using System.Net; | 9 | using System.Net; |
10 | using System.Text; | 10 | using System.Text; |
11 | using WixToolset.BootstrapperCore; | ||
12 | using WixToolset.Mba.Core; | 11 | using WixToolset.Mba.Core; |
13 | 12 | ||
14 | using Threading = System.Windows.Threading; | 13 | using Threading = System.Windows.Threading; |
diff --git a/src/WixToolset.WixBA/WixBAFactory.cs b/src/WixToolset.WixBA/WixBAFactory.cs index fa18d357..bc7368d1 100644 --- a/src/WixToolset.WixBA/WixBAFactory.cs +++ b/src/WixToolset.WixBA/WixBAFactory.cs | |||
@@ -2,7 +2,6 @@ | |||
2 | 2 | ||
3 | namespace WixToolset.WixBA | 3 | namespace WixToolset.WixBA |
4 | { | 4 | { |
5 | using WixToolset.BootstrapperCore; | ||
6 | using WixToolset.Mba.Core; | 5 | using WixToolset.Mba.Core; |
7 | 6 | ||
8 | public class WixBAFactory : BaseBootstrapperApplicationFactory | 7 | public class WixBAFactory : BaseBootstrapperApplicationFactory |
diff --git a/src/WixToolset.WixBA/WixToolset.WixBA.csproj b/src/WixToolset.WixBA/WixToolset.WixBA.csproj index 4cdaa002..a19f4db4 100644 --- a/src/WixToolset.WixBA/WixToolset.WixBA.csproj +++ b/src/WixToolset.WixBA/WixToolset.WixBA.csproj | |||
@@ -1,6 +1,7 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | 1 | <?xml version="1.0" encoding="utf-8"?> |
2 | <!-- 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. --> | 2 | <!-- 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. --> |
3 | <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="12.0"> | 3 | <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="12.0"> |
4 | <Import Project="..\..\packages\WixToolset.Mba.Core.4.0.13\build\net20\WixToolset.Mba.Core.props" Condition="Exists('..\..\packages\WixToolset.Mba.Core.4.0.13\build\net20\WixToolset.Mba.Core.props')" /> | ||
4 | <PropertyGroup> | 5 | <PropertyGroup> |
5 | <ProjectGuid>{7C27518B-84AD-4679-8EF4-29DF552CF1AC}</ProjectGuid> | 6 | <ProjectGuid>{7C27518B-84AD-4679-8EF4-29DF552CF1AC}</ProjectGuid> |
6 | <AssemblyName>WixToolset.WixBA</AssemblyName> | 7 | <AssemblyName>WixToolset.WixBA</AssemblyName> |
@@ -56,11 +57,8 @@ | |||
56 | <Reference Include="System.Xml" /> | 57 | <Reference Include="System.Xml" /> |
57 | <Reference Include="System.Xaml" /> | 58 | <Reference Include="System.Xaml" /> |
58 | <Reference Include="WindowsBase" /> | 59 | <Reference Include="WindowsBase" /> |
59 | <Reference Include="WixToolset.BootstrapperCore"> | ||
60 | <HintPath>..\..\packages\WixToolset.BootstrapperCore.4.0.8\lib\net20\WixToolset.BootstrapperCore.dll</HintPath> | ||
61 | </Reference> | ||
62 | <Reference Include="WixToolset.Mba.Core"> | 60 | <Reference Include="WixToolset.Mba.Core"> |
63 | <HintPath>..\..\packages\WixToolset.Mba.Core.4.0.9\lib\net20\WixToolset.Mba.Core.dll</HintPath> | 61 | <HintPath>..\..\packages\WixToolset.Mba.Core.4.0.13\lib\net20\WixToolset.Mba.Core.dll</HintPath> |
64 | </Reference> | 62 | </Reference> |
65 | </ItemGroup> | 63 | </ItemGroup> |
66 | <ItemGroup> | 64 | <ItemGroup> |
@@ -76,5 +74,6 @@ | |||
76 | <ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText> | 74 | <ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText> |
77 | </PropertyGroup> | 75 | </PropertyGroup> |
78 | <Error Condition="!Exists('..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets'))" /> | 76 | <Error Condition="!Exists('..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets'))" /> |
77 | <Error Condition="!Exists('..\..\packages\WixToolset.Mba.Core.4.0.13\build\net20\WixToolset.Mba.Core.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WixToolset.Mba.Core.4.0.13\build\net20\WixToolset.Mba.Core.props'))" /> | ||
79 | </Target> | 78 | </Target> |
80 | </Project> \ No newline at end of file | 79 | </Project> \ No newline at end of file |
diff --git a/src/WixToolset.WixBA/packages.config b/src/WixToolset.WixBA/packages.config index 1dd9b27c..6679d624 100644 --- a/src/WixToolset.WixBA/packages.config +++ b/src/WixToolset.WixBA/packages.config | |||
@@ -1,6 +1,5 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | 1 | <?xml version="1.0" encoding="utf-8"?> |
2 | <packages> | 2 | <packages> |
3 | <package id="Nerdbank.GitVersioning" version="2.1.65" targetFramework="net45" developmentDependency="true" /> | 3 | <package id="Nerdbank.GitVersioning" version="2.1.65" targetFramework="net45" developmentDependency="true" /> |
4 | <package id="WixToolset.BootstrapperCore" version="4.0.8" targetFramework="net45" /> | 4 | <package id="WixToolset.Mba.Core" version="4.0.13" targetFramework="net45" /> |
5 | <package id="WixToolset.Mba.Core" version="4.0.9" targetFramework="net45" /> | ||
6 | </packages> \ No newline at end of file | 5 | </packages> \ No newline at end of file |