aboutsummaryrefslogtreecommitdiff
path: root/src/wixext/NetfxWindowsInstallerBackendExtension.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/wixext/NetfxWindowsInstallerBackendExtension.cs')
-rw-r--r--src/wixext/NetfxWindowsInstallerBackendExtension.cs7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/wixext/NetfxWindowsInstallerBackendExtension.cs b/src/wixext/NetfxWindowsInstallerBackendExtension.cs
index 1c7ce9b8..7e30d396 100644
--- a/src/wixext/NetfxWindowsInstallerBackendExtension.cs
+++ b/src/wixext/NetfxWindowsInstallerBackendExtension.cs
@@ -3,7 +3,6 @@
3namespace WixToolset.Netfx 3namespace WixToolset.Netfx
4{ 4{
5 using System.Collections.Generic; 5 using System.Collections.Generic;
6 using WixToolset.Data;
7 using WixToolset.Data.WindowsInstaller; 6 using WixToolset.Data.WindowsInstaller;
8 using WixToolset.Extensibility; 7 using WixToolset.Extensibility;
9 8
@@ -26,11 +25,5 @@ namespace WixToolset.Netfx
26 }; 25 };
27 26
28 public override IEnumerable<TableDefinition> TableDefinitions { get => Tables; } 27 public override IEnumerable<TableDefinition> TableDefinitions { get => Tables; }
29
30 public override bool TryAddTupleToOutput(IntermediateTuple tuple, WindowsInstallerData output)
31 {
32 var columnZeroIsId = tuple.Id != null;
33 return this.BackendHelper.TryAddTupleToOutputMatchingTableDefinitions(tuple, output, this.TableDefinitions, columnZeroIsId);
34 }
35 } 28 }
36} 29}