diff options
author | Bob Arnson <bob@firegiant.com> | 2021-12-12 16:54:43 -0500 |
---|---|---|
committer | Bob Arnson <github@bobs.org> | 2021-12-17 09:03:18 -0500 |
commit | 3542ddd0b007673f3fc338bd53c3b807c3ed7308 (patch) | |
tree | 6fe632b659587011586788d0968d9687f3b28535 /src/api | |
parent | ac27477c7ec5697c0b3c9a5c809f9eee118dd7b6 (diff) | |
download | wix-3542ddd0b007673f3fc338bd53c3b807c3ed7308.tar.gz wix-3542ddd0b007673f3fc338bd53c3b807c3ed7308.tar.bz2 wix-3542ddd0b007673f3fc338bd53c3b807c3ed7308.zip |
Fix ids for DependencyExtension.
Diffstat (limited to 'src/api')
-rw-r--r-- | src/api/wix/WixToolset.Data/WindowsInstaller/WindowsInstallerTableDefinitions.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/api/wix/WixToolset.Data/WindowsInstaller/WindowsInstallerTableDefinitions.cs b/src/api/wix/WixToolset.Data/WindowsInstaller/WindowsInstallerTableDefinitions.cs index a64593ec..d2519aef 100644 --- a/src/api/wix/WixToolset.Data/WindowsInstaller/WindowsInstallerTableDefinitions.cs +++ b/src/api/wix/WixToolset.Data/WindowsInstaller/WindowsInstallerTableDefinitions.cs | |||
@@ -1733,7 +1733,7 @@ namespace WixToolset.Data.WindowsInstaller | |||
1733 | ); | 1733 | ); |
1734 | 1734 | ||
1735 | public static readonly TableDefinition WixDependencyProvider = new TableDefinition( | 1735 | public static readonly TableDefinition WixDependencyProvider = new TableDefinition( |
1736 | "WixDependencyProvider", | 1736 | "Wix4DependencyProvider", |
1737 | SymbolDefinitions.WixDependencyProvider, | 1737 | SymbolDefinitions.WixDependencyProvider, |
1738 | new[] | 1738 | new[] |
1739 | { | 1739 | { |
@@ -1748,7 +1748,7 @@ namespace WixToolset.Data.WindowsInstaller | |||
1748 | ); | 1748 | ); |
1749 | 1749 | ||
1750 | public static readonly TableDefinition WixDependency = new TableDefinition( | 1750 | public static readonly TableDefinition WixDependency = new TableDefinition( |
1751 | "WixDependency", | 1751 | "Wix4Dependency", |
1752 | SymbolDefinitions.WixDependency, | 1752 | SymbolDefinitions.WixDependency, |
1753 | new[] | 1753 | new[] |
1754 | { | 1754 | { |
@@ -1762,12 +1762,12 @@ namespace WixToolset.Data.WindowsInstaller | |||
1762 | ); | 1762 | ); |
1763 | 1763 | ||
1764 | public static readonly TableDefinition WixDependencyRef = new TableDefinition( | 1764 | public static readonly TableDefinition WixDependencyRef = new TableDefinition( |
1765 | "WixDependencyRef", | 1765 | "Wix4DependencyRef", |
1766 | SymbolDefinitions.WixDependencyRef, | 1766 | SymbolDefinitions.WixDependencyRef, |
1767 | new[] | 1767 | new[] |
1768 | { | 1768 | { |
1769 | new ColumnDefinition("WixDependencyProvider_", ColumnType.String, 72, primaryKey: true, nullable: false, ColumnCategory.Identifier, keyTable: "WixDependencyProvider", keyColumn: 1, description: "Foreign key into the Component table.", modularizeType: ColumnModularizeType.Column), | 1769 | new ColumnDefinition("WixDependencyProvider_", ColumnType.String, 72, primaryKey: true, nullable: false, ColumnCategory.Identifier, keyTable: "Wix4DependencyProvider", keyColumn: 1, description: "Foreign key into the Component table.", modularizeType: ColumnModularizeType.Column), |
1770 | new ColumnDefinition("WixDependency_", ColumnType.String, 72, primaryKey: true, nullable: false, ColumnCategory.Identifier, keyTable: "WixDependency", keyColumn: 1, description: "Foreign key into the WixDependency table.", modularizeType: ColumnModularizeType.Column), | 1770 | new ColumnDefinition("WixDependency_", ColumnType.String, 72, primaryKey: true, nullable: false, ColumnCategory.Identifier, keyTable: "Wix4Dependency", keyColumn: 1, description: "Foreign key into the WixDependency table.", modularizeType: ColumnModularizeType.Column), |
1771 | }, | 1771 | }, |
1772 | symbolIdIsPrimaryKey: false | 1772 | symbolIdIsPrimaryKey: false |
1773 | ); | 1773 | ); |