aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/wixext/NetfxWindowsInstallerBackendExtension.cs5
1 files 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 @@
2 2
3namespace WixToolset.Netfx 3namespace WixToolset.Netfx
4{ 4{
5 using System.Collections.Generic;
5 using WixToolset.Data; 6 using WixToolset.Data;
6 using WixToolset.Data.WindowsInstaller; 7 using WixToolset.Data.WindowsInstaller;
7 using WixToolset.Extensibility; 8 using WixToolset.Extensibility;
@@ -23,8 +24,6 @@ namespace WixToolset.Netfx
23 ), 24 ),
24 }; 25 };
25 26
26 protected override TableDefinition[] TableDefinitionsForTuples => Tables; 27 public override IEnumerable<TableDefinition> TableDefinitions { get => Tables; }
27
28 public override bool TryAddTupleToOutput(IntermediateTuple tuple, WindowsInstallerData output) => this.BackendHelper.TryAddTupleToOutputMatchingTableDefinitions(tuple, output, this.TableDefinitionsForTuples, true);
29 } 28 }
30} 29}