@joebigelow / wix / commits / ce9a0d0c

Update extension for Data and Extensibility changes.

Bob Arnson committed Feb 20, 2020 at 21:16 UTC ce9a0d0c678cffe1d67017074ad420f04f12916c
1 file changed +2 -3
src/wixext/NetfxWindowsInstallerBackendExtension.cs
+2 -3
@@ -2,6 +2,7 @@
2
3 namespace WixToolset.Netfx
4 {
5 + using System.Collections.Generic;
6 using WixToolset.Data;
7 using WixToolset.Data.WindowsInstaller;
8 using WixToolset.Extensibility;
@@ -23,8 +24,6 @@ namespace WixToolset.Netfx
24 ),
25 };
26
26 - protected override TableDefinition[] TableDefinitionsForTuples => Tables;
27 -
28 - public override bool TryAddTupleToOutput(IntermediateTuple tuple, WindowsInstallerData output) => this.BackendHelper.TryAddTupleToOutputMatchingTableDefinitions(tuple, output, this.TableDefinitionsForTuples, true);
27 + public override IEnumerable<TableDefinition> TableDefinitions { get => Tables; }
28 }
29 }