From ce9a0d0c678cffe1d67017074ad420f04f12916c Mon Sep 17 00:00:00 2001 From: Bob Arnson Date: Thu, 20 Feb 2020 21:16:52 -0500 Subject: Update extension for Data and Extensibility changes. --- src/wixext/NetfxWindowsInstallerBackendExtension.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/wixext/NetfxWindowsInstallerBackendExtension.cs b/src/wixext/NetfxWindowsInstallerBackendExtension.cs index 4672b670..df4e9839 100644 --- a/src/wixext/NetfxWindowsInstallerBackendExtension.cs +++ b/src/wixext/NetfxWindowsInstallerBackendExtension.cs @@ -2,6 +2,7 @@ namespace WixToolset.Netfx { + using System.Collections.Generic; using WixToolset.Data; using WixToolset.Data.WindowsInstaller; using WixToolset.Extensibility; @@ -23,8 +24,6 @@ namespace WixToolset.Netfx ), }; - protected override TableDefinition[] TableDefinitionsForTuples => Tables; - - public override bool TryAddTupleToOutput(IntermediateTuple tuple, WindowsInstallerData output) => this.BackendHelper.TryAddTupleToOutputMatchingTableDefinitions(tuple, output, this.TableDefinitionsForTuples, true); + public override IEnumerable TableDefinitions { get => Tables; } } } -- cgit v1.2.3-55-g6feb