Update extension for Data and Extensibility changes.
Update extension for Data and Extensibility changes.
Bob Arnson committed
Feb 20, 2020 at 21:23 UTC
2975b824a86fcb5164d6088a7767aead57bf1009
1 file changed
+3
-2
src/wixext/UtilWindowsInstallerBackendExtension.cs
+3
-2
@@ -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
3
namespace WixToolset.Util
4
{
5
+ using System.Collections.Generic;
6
using System.Linq;
7
using System.Xml;
8
using WixToolset.Data.WindowsInstaller;
@@ -11,7 +12,7 @@ namespace WixToolset.Util
12
{
13
private static readonly TableDefinition[] Tables = LoadTables();
14
14
- protected override TableDefinition[] TableDefinitionsForTuples => Tables;
15
+ public override IEnumerable<TableDefinition> TableDefinitions { get => Tables; }
16
17
private static TableDefinition[] LoadTables()
18
{