diff options
| author | Rob Mensching <rob@firegiant.com> | 2021-02-27 07:28:33 -0800 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2021-02-27 07:39:31 -0800 |
| commit | d997b6cda9e983f9dfa45fddd7122f33ae8c7666 (patch) | |
| tree | a4caca99d8242ee2cbb5955e330a5641f8c01c4a /src/WixToolset.Data/WindowsInstaller/WindowsInstallerTableDefinitions.cs | |
| parent | d01237f3221ce712e5fcbc08227b6f6f7f411de7 (diff) | |
| download | wix-d997b6cda9e983f9dfa45fddd7122f33ae8c7666.tar.gz wix-d997b6cda9e983f9dfa45fddd7122f33ae8c7666.tar.bz2 wix-d997b6cda9e983f9dfa45fddd7122f33ae8c7666.zip | |
Absorb Tag.wixext into core SoftwareTag element
Resolves wixtoolset/issues#5949
Diffstat (limited to 'src/WixToolset.Data/WindowsInstaller/WindowsInstallerTableDefinitions.cs')
| -rw-r--r-- | src/WixToolset.Data/WindowsInstaller/WindowsInstallerTableDefinitions.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/WixToolset.Data/WindowsInstaller/WindowsInstallerTableDefinitions.cs b/src/WixToolset.Data/WindowsInstaller/WindowsInstallerTableDefinitions.cs index 86450c22..c0075a27 100644 --- a/src/WixToolset.Data/WindowsInstaller/WindowsInstallerTableDefinitions.cs +++ b/src/WixToolset.Data/WindowsInstaller/WindowsInstallerTableDefinitions.cs | |||
| @@ -1283,6 +1283,20 @@ namespace WixToolset.Data.WindowsInstaller | |||
| 1283 | symbolIdIsPrimaryKey: true | 1283 | symbolIdIsPrimaryKey: true |
| 1284 | ); | 1284 | ); |
| 1285 | 1285 | ||
| 1286 | public static readonly TableDefinition SoftwareIdentificationTag = new TableDefinition( | ||
| 1287 | "SoftwareIdentificationTag", | ||
| 1288 | SymbolDefinitions.SoftwareIdentificationTag, | ||
| 1289 | new[] | ||
| 1290 | { | ||
| 1291 | new ColumnDefinition("File_", ColumnType.String, 72, primaryKey: true, nullable: false, ColumnCategory.Identifier, keyTable: "File", keyColumn: 1, description: "The file that installs the software id tag.", modularizeType: ColumnModularizeType.Column), | ||
| 1292 | new ColumnDefinition("Regid", ColumnType.String, 0, primaryKey: false, nullable: false, ColumnCategory.Text, description: "The regid for the software id tag."), | ||
| 1293 | new ColumnDefinition("TagId", ColumnType.String, 0, primaryKey: false, nullable: false, ColumnCategory.Text, description: "The unique id for the software id tag."), | ||
| 1294 | new ColumnDefinition("PersistentId", ColumnType.String, 0, primaryKey: false, nullable: false, ColumnCategory.Text, description: "The type of the software id tag."), | ||
| 1295 | new ColumnDefinition("Alias", ColumnType.String, 0, primaryKey: false, nullable: true, ColumnCategory.Text, description: "Alias for the software id tag."), | ||
| 1296 | }, | ||
| 1297 | symbolIdIsPrimaryKey: false | ||
| 1298 | ); | ||
| 1299 | |||
| 1286 | public static readonly TableDefinition TextStyle = new TableDefinition( | 1300 | public static readonly TableDefinition TextStyle = new TableDefinition( |
| 1287 | "TextStyle", | 1301 | "TextStyle", |
| 1288 | SymbolDefinitions.TextStyle, | 1302 | SymbolDefinitions.TextStyle, |
| @@ -1813,6 +1827,7 @@ namespace WixToolset.Data.WindowsInstaller | |||
| 1813 | Shortcut, | 1827 | Shortcut, |
| 1814 | MsiShortcutProperty, | 1828 | MsiShortcutProperty, |
| 1815 | Signature, | 1829 | Signature, |
| 1830 | SoftwareIdentificationTag, | ||
| 1816 | TextStyle, | 1831 | TextStyle, |
| 1817 | TypeLib, | 1832 | TypeLib, |
| 1818 | UIText, | 1833 | UIText, |
