diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2020-04-10 10:05:37 +1000 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2020-04-10 10:21:39 +1000 |
commit | cff40371860cded7924b0010a26c9e8dc779cb0f (patch) | |
tree | 597d43815f4a6499cc7e6c58be313cc33a239b01 /src/wixext | |
parent | 87527d58d18fa719dc7a5ce512369485d907cba4 (diff) | |
download | wix-cff40371860cded7924b0010a26c9e8dc779cb0f.tar.gz wix-cff40371860cded7924b0010a26c9e8dc779cb0f.tar.bz2 wix-cff40371860cded7924b0010a26c9e8dc779cb0f.zip |
Update dependencies.
Diffstat (limited to 'src/wixext')
-rw-r--r-- | src/wixext/HttpWindowsInstallerBackendBinderExtension.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wixext/HttpWindowsInstallerBackendBinderExtension.cs b/src/wixext/HttpWindowsInstallerBackendBinderExtension.cs index 598cb275..f8dd1838 100644 --- a/src/wixext/HttpWindowsInstallerBackendBinderExtension.cs +++ b/src/wixext/HttpWindowsInstallerBackendBinderExtension.cs | |||
@@ -2,6 +2,7 @@ | |||
2 | 2 | ||
3 | namespace WixToolset.Http | 3 | namespace WixToolset.Http |
4 | { | 4 | { |
5 | using System.Collections.Generic; | ||
5 | using System.Linq; | 6 | using System.Linq; |
6 | using System.Xml; | 7 | using System.Xml; |
7 | using WixToolset.Data.WindowsInstaller; | 8 | using WixToolset.Data.WindowsInstaller; |
@@ -11,7 +12,7 @@ namespace WixToolset.Http | |||
11 | { | 12 | { |
12 | private static readonly TableDefinition[] Tables = LoadTables(); | 13 | private static readonly TableDefinition[] Tables = LoadTables(); |
13 | 14 | ||
14 | protected override TableDefinition[] TableDefinitionsForTuples => Tables; | 15 | public override IEnumerable<TableDefinition> TableDefinitions => Tables; |
15 | 16 | ||
16 | private static TableDefinition[] LoadTables() | 17 | private static TableDefinition[] LoadTables() |
17 | { | 18 | { |