diff options
Diffstat (limited to 'src/wixext/NetfxWindowsInstallerBackendExtension.cs')
-rw-r--r-- | src/wixext/NetfxWindowsInstallerBackendExtension.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/wixext/NetfxWindowsInstallerBackendExtension.cs b/src/wixext/NetfxWindowsInstallerBackendExtension.cs index 5ca554b8..4672b670 100644 --- a/src/wixext/NetfxWindowsInstallerBackendExtension.cs +++ b/src/wixext/NetfxWindowsInstallerBackendExtension.cs | |||
@@ -1,7 +1,8 @@ | |||
1 | // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. | 1 | // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. |
2 | 2 | ||
3 | namespace WixToolset.Netfx | 3 | namespace WixToolset.Netfx |
4 | { | 4 | { |
5 | using WixToolset.Data; | ||
5 | using WixToolset.Data.WindowsInstaller; | 6 | using WixToolset.Data.WindowsInstaller; |
6 | using WixToolset.Extensibility; | 7 | using WixToolset.Extensibility; |
7 | 8 | ||
@@ -23,5 +24,7 @@ namespace WixToolset.Netfx | |||
23 | }; | 24 | }; |
24 | 25 | ||
25 | protected override TableDefinition[] TableDefinitionsForTuples => Tables; | 26 | protected override TableDefinition[] TableDefinitionsForTuples => Tables; |
27 | |||
28 | public override bool TryAddTupleToOutput(IntermediateTuple tuple, WindowsInstallerData output) => this.BackendHelper.TryAddTupleToOutputMatchingTableDefinitions(tuple, output, this.TableDefinitionsForTuples, true); | ||
26 | } | 29 | } |
27 | } | 30 | } |