aboutsummaryrefslogtreecommitdiff
path: root/src/wixext
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-04-08 14:06:02 +1000
committerSean Hall <r.sean.hall@gmail.com>2020-04-08 14:27:11 +1000
commit7132f1882ebcfeb0113730bd722fa3587bc5e5f4 (patch)
treed75590c6795e35423b37e180261b11e7003504a2 /src/wixext
parent704139b787d2016e43b6a87dbfc41555dac8326a (diff)
downloadwix-7132f1882ebcfeb0113730bd722fa3587bc5e5f4.tar.gz
wix-7132f1882ebcfeb0113730bd722fa3587bc5e5f4.tar.bz2
wix-7132f1882ebcfeb0113730bd722fa3587bc5e5f4.zip
Update dependencies.
Diffstat (limited to 'src/wixext')
-rw-r--r--src/wixext/DifxAppWindowsInstallerBackendBinderExtension.cs3
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
3namespace WixToolset.DifxApp 3namespace 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 {