diff options
Diffstat (limited to 'src/wixext')
-rw-r--r-- | src/wixext/BalWindowsInstallerBackendBinderExtension.cs | 6 |
1 files changed, 3 insertions, 3 deletions
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 | |||
29 | } | 29 | } |
30 | } | 30 | } |
31 | 31 | ||
32 | public override void PostBackendBind(IBindResult result, WixOutput wixout) | 32 | public override void PostBackendBind(IBindResult result) |
33 | { | 33 | { |
34 | base.PostBackendBind(result, wixout); | 34 | base.PostBackendBind(result); |
35 | 35 | ||
36 | var output = WindowsInstallerData.Load(wixout.Uri.AbsoluteUri, false); | 36 | var output = WindowsInstallerData.Load(result.Wixout, false); |
37 | 37 | ||
38 | // Only process Bundles. | 38 | // Only process Bundles. |
39 | if (OutputType.Bundle != output.Type) | 39 | if (OutputType.Bundle != output.Type) |