diff options
| author | Bob Arnson <bob@joyofsetup.com> | 2020-02-20 21:16:52 -0500 |
|---|---|---|
| committer | Bob Arnson <bob@firegiant.com> | 2020-02-20 21:23:24 -0500 |
| commit | ce9a0d0c678cffe1d67017074ad420f04f12916c (patch) | |
| tree | c3041debbcc091e41a33a0bd9b77b97160b66952 /src | |
| parent | 6bd4c05fbcb1a8e4d042db6da45bca9043e25416 (diff) | |
| download | wix-ce9a0d0c678cffe1d67017074ad420f04f12916c.tar.gz wix-ce9a0d0c678cffe1d67017074ad420f04f12916c.tar.bz2 wix-ce9a0d0c678cffe1d67017074ad420f04f12916c.zip | |
Update extension for Data and Extensibility changes.
Diffstat (limited to 'src')
| -rw-r--r-- | src/wixext/NetfxWindowsInstallerBackendExtension.cs | 5 |
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 | ||
| 3 | namespace WixToolset.Netfx | 3 | namespace 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 | } |
