diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2021-05-05 20:06:53 -0500 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2021-05-11 19:11:19 -0500 |
commit | bd6bd5c262fe7e4faa3e7815ebe6036e7ab456e1 (patch) | |
tree | 5f0ce6fd2e2d72e173b7f0ae1b62d7ee9778efbc | |
parent | 0db19b269e9b94a674e370629934e82545374777 (diff) | |
download | wix-bd6bd5c262fe7e4faa3e7815ebe6036e7ab456e1.tar.gz wix-bd6bd5c262fe7e4faa3e7815ebe6036e7ab456e1.tar.bz2 wix-bd6bd5c262fe7e4faa3e7815ebe6036e7ab456e1.zip |
Update WixBA to Mba.Core 4.0.49.
-rw-r--r-- | src/WixToolset.WixBA/ProgressViewModel.cs | 4 | ||||
-rw-r--r-- | src/WixToolset.WixBA/WixToolset.WixBA.csproj | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/WixToolset.WixBA/ProgressViewModel.cs b/src/WixToolset.WixBA/ProgressViewModel.cs index e4fb7ab2..17af5cfe 100644 --- a/src/WixToolset.WixBA/ProgressViewModel.cs +++ b/src/WixToolset.WixBA/ProgressViewModel.cs | |||
@@ -36,7 +36,7 @@ namespace WixToolset.WixBA | |||
36 | WixBA.Model.Bootstrapper.PauseAutomaticUpdatesBegin += this.PauseAutomaticUpdatesBegin; | 36 | WixBA.Model.Bootstrapper.PauseAutomaticUpdatesBegin += this.PauseAutomaticUpdatesBegin; |
37 | WixBA.Model.Bootstrapper.SystemRestorePointBegin += this.SystemRestorePointBegin; | 37 | WixBA.Model.Bootstrapper.SystemRestorePointBegin += this.SystemRestorePointBegin; |
38 | WixBA.Model.Bootstrapper.PlanBegin += this.PlanBegin; | 38 | WixBA.Model.Bootstrapper.PlanBegin += this.PlanBegin; |
39 | WixBA.Model.Bootstrapper.PlanPackageComplete += this.PlanPackageComplete; | 39 | WixBA.Model.Bootstrapper.PlannedPackage += this.PlannedPackage; |
40 | WixBA.Model.Bootstrapper.ApplyBegin += this.ApplyBegin; | 40 | WixBA.Model.Bootstrapper.ApplyBegin += this.ApplyBegin; |
41 | WixBA.Model.Bootstrapper.Progress += this.ApplyProgress; | 41 | WixBA.Model.Bootstrapper.Progress += this.ApplyProgress; |
42 | WixBA.Model.Bootstrapper.CacheAcquireProgress += this.CacheAcquireProgress; | 42 | WixBA.Model.Bootstrapper.CacheAcquireProgress += this.CacheAcquireProgress; |
@@ -115,7 +115,7 @@ namespace WixToolset.WixBA | |||
115 | } | 115 | } |
116 | } | 116 | } |
117 | 117 | ||
118 | private void PlanPackageComplete(object sender, PlanPackageCompleteEventArgs e) | 118 | private void PlannedPackage(object sender, PlannedPackageEventArgs e) |
119 | { | 119 | { |
120 | if (ActionState.None != e.Execute) | 120 | if (ActionState.None != e.Execute) |
121 | { | 121 | { |
diff --git a/src/WixToolset.WixBA/WixToolset.WixBA.csproj b/src/WixToolset.WixBA/WixToolset.WixBA.csproj index 03838bb1..5bc44b38 100644 --- a/src/WixToolset.WixBA/WixToolset.WixBA.csproj +++ b/src/WixToolset.WixBA/WixToolset.WixBA.csproj | |||
@@ -41,6 +41,6 @@ | |||
41 | </ItemGroup> | 41 | </ItemGroup> |
42 | <ItemGroup> | 42 | <ItemGroup> |
43 | <PackageReference Include="Nerdbank.GitVersioning" Version="3.3.37" /> | 43 | <PackageReference Include="Nerdbank.GitVersioning" Version="3.3.37" /> |
44 | <PackageReference Include="WixToolset.Mba.Core" Version="4.0.44" /> | 44 | <PackageReference Include="WixToolset.Mba.Core" Version="4.0.49" /> |
45 | </ItemGroup> | 45 | </ItemGroup> |
46 | </Project> \ No newline at end of file | 46 | </Project> \ No newline at end of file |