@joebigelow / wix-1 / commits / bd6bd5c2

Update WixBA to Mba.Core 4.0.49.

Sean Hall committed May 5, 2021 at 20:06 UTC bd6bd5c262fe7e4faa3e7815ebe6036e7ab456e1
2 files changed +3 -3
src/WixToolset.WixBA/ProgressViewModel.cs
+2 -2
@@ -36,7 +36,7 @@ namespace WixToolset.WixBA
36 WixBA.Model.Bootstrapper.PauseAutomaticUpdatesBegin += this.PauseAutomaticUpdatesBegin;
37 WixBA.Model.Bootstrapper.SystemRestorePointBegin += this.SystemRestorePointBegin;
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;
41 WixBA.Model.Bootstrapper.Progress += this.ApplyProgress;
42 WixBA.Model.Bootstrapper.CacheAcquireProgress += this.CacheAcquireProgress;
@@ -115,7 +115,7 @@ namespace WixToolset.WixBA
115 }
116 }
117
118 - private void PlanPackageComplete(object sender, PlanPackageCompleteEventArgs e)
118 + private void PlannedPackage(object sender, PlannedPackageEventArgs e)
119 {
120 if (ActionState.None != e.Execute)
121 {
src/WixToolset.WixBA/WixToolset.WixBA.csproj
+1 -1
@@ -41,6 +41,6 @@
41 </ItemGroup>
42 <ItemGroup>
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>
46 </Project>
\ No newline at end of file