From 8a47981860da38b85a32c59aab019015e4f97360 Mon Sep 17 00:00:00 2001 From: Andrij Abyzov Date: Tue, 2 Mar 2021 15:04:57 +0100 Subject: Use SymbolsFinalized instead of BundleFinalize --- src/wixext/BalBurnBackendExtension.cs | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/wixext/BalBurnBackendExtension.cs b/src/wixext/BalBurnBackendExtension.cs index bf96e388..5e647b1c 100644 --- a/src/wixext/BalBurnBackendExtension.cs +++ b/src/wixext/BalBurnBackendExtension.cs @@ -11,7 +11,7 @@ namespace WixToolset.Bal using WixToolset.Data.Symbols; using WixToolset.Extensibility; - public class BalBurnBackendExtension : BaseBurnBackendExtension + public class BalBurnBackendExtension : BaseBurnBackendBinderExtension { private static readonly IntermediateSymbolDefinition[] BurnSymbolDefinitions = { @@ -27,12 +27,9 @@ namespace WixToolset.Bal protected override IEnumerable SymbolDefinitions => BurnSymbolDefinitions; - public override void BundleFinalize() + public override void SymbolsFinalized(IntermediateSection section) { - base.BundleFinalize(); - - var intermediate = this.Context.IntermediateRepresentation; - var section = intermediate.Sections.Single(); + base.SymbolsFinalized(section); var baSymbol = section.Symbols.OfType().SingleOrDefault(); var baId = baSymbol?.Id?.Id; -- cgit v1.2.3-55-g6feb From 9bc873da577fa06e2383e5b44d2b83593e4e8a2e Mon Sep 17 00:00:00 2001 From: Andrij Abyzov Date: Tue, 2 Mar 2021 15:16:08 +0100 Subject: Update dependencies. --- global.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global.json b/global.json index 9492f867..34e8e7e6 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "msbuild-sdks": { - "WixToolset.Sdk": "4.0.0-build-0190" + "WixToolset.Sdk": "4.0.0-build-0192" }, "sdk": { "allowPrerelease": false -- cgit v1.2.3-55-g6feb