aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBob Arnson <bob@joyofsetup.com>2020-02-20 21:23:14 -0500
committerBob Arnson <bob@firegiant.com>2020-02-20 21:26:56 -0500
commit2975b824a86fcb5164d6088a7767aead57bf1009 (patch)
treea31e4563a6456fbba5a78bdba2acdf3168a7fb16 /src
parent4fe2491bf3a7f7946d8c4288e12a2539469b6e54 (diff)
downloadwix-2975b824a86fcb5164d6088a7767aead57bf1009.tar.gz
wix-2975b824a86fcb5164d6088a7767aead57bf1009.tar.bz2
wix-2975b824a86fcb5164d6088a7767aead57bf1009.zip
Update extension for Data and Extensibility changes.
Diffstat (limited to 'src')
-rw-r--r--src/wixext/UtilWindowsInstallerBackendExtension.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/wixext/UtilWindowsInstallerBackendExtension.cs b/src/wixext/UtilWindowsInstallerBackendExtension.cs
index 0cb09678..2365ed01 100644
--- a/src/wixext/UtilWindowsInstallerBackendExtension.cs
+++ b/src/wixext/UtilWindowsInstallerBackendExtension.cs
@@ -1,7 +1,8 @@
1// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. 1// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
2 2
3namespace WixToolset.Util 3namespace WixToolset.Util
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.Util
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 { get => Tables; }
15 16
16 private static TableDefinition[] LoadTables() 17 private static TableDefinition[] LoadTables()
17 { 18 {