diff options
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, |
