From d5b89ecb2ba931cd5429e00a78b9457f8a63c6d2 Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Mon, 30 Mar 2020 19:25:36 +1000 Subject: Upgrade to latest dependencies. Stop skipping CanBuildUsingWixStdBa. Fix memory leak in wixstdba. --- src/wixext/BalWindowsInstallerBackendBinderExtension.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/wixext') diff --git a/src/wixext/BalWindowsInstallerBackendBinderExtension.cs b/src/wixext/BalWindowsInstallerBackendBinderExtension.cs index e53087b7..3c116329 100644 --- a/src/wixext/BalWindowsInstallerBackendBinderExtension.cs +++ b/src/wixext/BalWindowsInstallerBackendBinderExtension.cs @@ -29,11 +29,11 @@ namespace WixToolset.Bal } } - public override void PostBackendBind(IBindResult result, WixOutput wixout) + public override void PostBackendBind(IBindResult result) { - base.PostBackendBind(result, wixout); + base.PostBackendBind(result); - var output = WindowsInstallerData.Load(wixout.Uri.AbsoluteUri, false); + var output = WindowsInstallerData.Load(result.Wixout, false); // Only process Bundles. if (OutputType.Bundle != output.Type) -- cgit v1.2.3-55-g6feb