diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2020-04-02 13:56:13 +1000 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2020-04-02 13:59:05 +1000 |
commit | 98eb2a20bb786ec2d2ee4b9bb02e33477d0215c2 (patch) | |
tree | e15a1ab8ff6a3ed43d887e3998c1adc30d4c71f6 /src/wixext | |
parent | 6ef267bc108ea6dcfc958da281b51baf30a93078 (diff) | |
download | wix-98eb2a20bb786ec2d2ee4b9bb02e33477d0215c2.tar.gz wix-98eb2a20bb786ec2d2ee4b9bb02e33477d0215c2.tar.bz2 wix-98eb2a20bb786ec2d2ee4b9bb02e33477d0215c2.zip |
Update dependencies.
Diffstat (limited to 'src/wixext')
-rw-r--r-- | src/wixext/IisWindowsInstallerBackendBinderExtension.cs | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/wixext/IisWindowsInstallerBackendBinderExtension.cs b/src/wixext/IisWindowsInstallerBackendBinderExtension.cs index 93b6795f..50571c34 100644 --- a/src/wixext/IisWindowsInstallerBackendBinderExtension.cs +++ b/src/wixext/IisWindowsInstallerBackendBinderExtension.cs | |||
@@ -2,8 +2,10 @@ | |||
2 | 2 | ||
3 | namespace WixToolset.Iis | 3 | namespace WixToolset.Iis |
4 | { | 4 | { |
5 | using System.Collections.Generic; | ||
5 | using System.Linq; | 6 | using System.Linq; |
6 | using System.Xml; | 7 | using System.Xml; |
8 | using WixToolset.Data; | ||
7 | using WixToolset.Data.WindowsInstaller; | 9 | using WixToolset.Data.WindowsInstaller; |
8 | using WixToolset.Extensibility; | 10 | using WixToolset.Extensibility; |
9 | 11 | ||
@@ -11,7 +13,13 @@ namespace WixToolset.Iis | |||
11 | { | 13 | { |
12 | private static readonly TableDefinition[] Tables = LoadTables(); | 14 | private static readonly TableDefinition[] Tables = LoadTables(); |
13 | 15 | ||
14 | protected override TableDefinition[] TableDefinitionsForTuples => Tables; | 16 | public override IEnumerable<TableDefinition> TableDefinitions { get => Tables; } |
17 | |||
18 | public override bool TryAddTupleToOutput(IntermediateTuple tuple, WindowsInstallerData output) | ||
19 | { | ||
20 | var columnZeroIsId = tuple.Id != null; | ||
21 | return this.BackendHelper.TryAddTupleToOutputMatchingTableDefinitions(tuple, output, this.TableDefinitions, columnZeroIsId); | ||
22 | } | ||
15 | 23 | ||
16 | private static TableDefinition[] LoadTables() | 24 | private static TableDefinition[] LoadTables() |
17 | { | 25 | { |