diff options
| author | Sean Hall <r.sean.hall@gmail.com> | 2020-04-06 08:20:28 +1000 |
|---|---|---|
| committer | Sean Hall <r.sean.hall@gmail.com> | 2020-04-06 14:19:01 +1000 |
| commit | 2b82ad224e45a6f9d052ae892ecbf85e436b0bdf (patch) | |
| tree | d85350b3f83b3d993f4aa76979f6a2c8319cb936 /src/wixext | |
| parent | 2b6c622d48bb76619bbba89f94d4f7669a6eef5e (diff) | |
| download | wix-2b82ad224e45a6f9d052ae892ecbf85e436b0bdf.tar.gz wix-2b82ad224e45a6f9d052ae892ecbf85e436b0bdf.tar.bz2 wix-2b82ad224e45a6f9d052ae892ecbf85e436b0bdf.zip | |
Update dependencies.
Diffstat (limited to 'src/wixext')
| -rw-r--r-- | src/wixext/SqlWindowsInstallerBackendExtension.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wixext/SqlWindowsInstallerBackendExtension.cs b/src/wixext/SqlWindowsInstallerBackendExtension.cs index 56bdbb1f..83505059 100644 --- a/src/wixext/SqlWindowsInstallerBackendExtension.cs +++ b/src/wixext/SqlWindowsInstallerBackendExtension.cs | |||
| @@ -2,6 +2,7 @@ | |||
| 2 | 2 | ||
| 3 | namespace WixToolset.Sql | 3 | namespace WixToolset.Sql |
| 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; |
| @@ -16,7 +17,7 @@ namespace WixToolset.Sql | |||
| 16 | 17 | ||
| 17 | private static readonly TableDefinition[] Tables = LoadTables(); | 18 | private static readonly TableDefinition[] Tables = LoadTables(); |
| 18 | 19 | ||
| 19 | protected override TableDefinition[] TableDefinitionsForTuples => Tables; | 20 | public override IEnumerable<TableDefinition> TableDefinitions => Tables; |
| 20 | 21 | ||
| 21 | private static TableDefinition[] LoadTables() | 22 | private static TableDefinition[] LoadTables() |
| 22 | { | 23 | { |
