diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2020-04-08 14:06:02 +1000 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2020-04-08 14:27:11 +1000 |
commit | 7132f1882ebcfeb0113730bd722fa3587bc5e5f4 (patch) | |
tree | d75590c6795e35423b37e180261b11e7003504a2 /src/wixext | |
parent | 704139b787d2016e43b6a87dbfc41555dac8326a (diff) | |
download | wix-7132f1882ebcfeb0113730bd722fa3587bc5e5f4.tar.gz wix-7132f1882ebcfeb0113730bd722fa3587bc5e5f4.tar.bz2 wix-7132f1882ebcfeb0113730bd722fa3587bc5e5f4.zip |
Update dependencies.
Diffstat (limited to 'src/wixext')
-rw-r--r-- | src/wixext/DifxAppWindowsInstallerBackendBinderExtension.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wixext/DifxAppWindowsInstallerBackendBinderExtension.cs b/src/wixext/DifxAppWindowsInstallerBackendBinderExtension.cs index 4d81c134..c87a661b 100644 --- a/src/wixext/DifxAppWindowsInstallerBackendBinderExtension.cs +++ b/src/wixext/DifxAppWindowsInstallerBackendBinderExtension.cs | |||
@@ -2,6 +2,7 @@ | |||
2 | 2 | ||
3 | namespace WixToolset.DifxApp | 3 | namespace WixToolset.DifxApp |
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.DifxApp | |||
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 | { |