diff options
Diffstat (limited to 'src/wixext/VSTableDefinitions.cs')
| -rw-r--r-- | src/wixext/VSTableDefinitions.cs | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/wixext/VSTableDefinitions.cs b/src/wixext/VSTableDefinitions.cs index bbc74b96..0c3ca907 100644 --- a/src/wixext/VSTableDefinitions.cs +++ b/src/wixext/VSTableDefinitions.cs | |||
| @@ -8,7 +8,7 @@ namespace WixToolset.VisualStudio | |||
| 8 | { | 8 | { |
| 9 | public static readonly TableDefinition HelpFile = new TableDefinition( | 9 | public static readonly TableDefinition HelpFile = new TableDefinition( |
| 10 | "HelpFile", | 10 | "HelpFile", |
| 11 | VSTupleDefinitions.HelpFile, | 11 | VSSymbolDefinitions.HelpFile, |
| 12 | new[] | 12 | new[] |
| 13 | { | 13 | { |
| 14 | new ColumnDefinition("HelpFileKey", ColumnType.String, 72, primaryKey: true, nullable: false, ColumnCategory.Identifier, description: "Primary Key for HelpFile Table (required).", modularizeType: ColumnModularizeType.Column), | 14 | new ColumnDefinition("HelpFileKey", ColumnType.String, 72, primaryKey: true, nullable: false, ColumnCategory.Identifier, description: "Primary Key for HelpFile Table (required).", modularizeType: ColumnModularizeType.Column), |
| @@ -20,46 +20,46 @@ namespace WixToolset.VisualStudio | |||
| 20 | new ColumnDefinition("File_HxR", ColumnType.String, 72, primaryKey: false, nullable: true, ColumnCategory.Identifier, keyTable: "File", keyColumn: 1, description: "Key for HxR (Attributes) file (optional).", modularizeType: ColumnModularizeType.Column), | 20 | new ColumnDefinition("File_HxR", ColumnType.String, 72, primaryKey: false, nullable: true, ColumnCategory.Identifier, keyTable: "File", keyColumn: 1, description: "Key for HxR (Attributes) file (optional).", modularizeType: ColumnModularizeType.Column), |
| 21 | new ColumnDefinition("File_Samples", ColumnType.String, 72, primaryKey: false, nullable: true, ColumnCategory.Identifier, keyTable: "File", keyColumn: 1, description: "Key for a file that is in the 'root' of the samples directory for this HelpFile (optional).", modularizeType: ColumnModularizeType.Column), | 21 | new ColumnDefinition("File_Samples", ColumnType.String, 72, primaryKey: false, nullable: true, ColumnCategory.Identifier, keyTable: "File", keyColumn: 1, description: "Key for a file that is in the 'root' of the samples directory for this HelpFile (optional).", modularizeType: ColumnModularizeType.Column), |
| 22 | }, | 22 | }, |
| 23 | tupleIdIsPrimaryKey: true | 23 | symbolIdIsPrimaryKey: true |
| 24 | ); | 24 | ); |
| 25 | 25 | ||
| 26 | public static readonly TableDefinition HelpFileToNamespace = new TableDefinition( | 26 | public static readonly TableDefinition HelpFileToNamespace = new TableDefinition( |
| 27 | "HelpFileToNamespace", | 27 | "HelpFileToNamespace", |
| 28 | VSTupleDefinitions.HelpFileToNamespace, | 28 | VSSymbolDefinitions.HelpFileToNamespace, |
| 29 | new[] | 29 | new[] |
| 30 | { | 30 | { |
| 31 | new ColumnDefinition("HelpFile_", ColumnType.String, 72, primaryKey: true, nullable: false, ColumnCategory.Identifier, keyTable: "HelpFile", keyColumn: 1, description: "Foreign key into HelpFile table (required).", modularizeType: ColumnModularizeType.Column), | 31 | new ColumnDefinition("HelpFile_", ColumnType.String, 72, primaryKey: true, nullable: false, ColumnCategory.Identifier, keyTable: "HelpFile", keyColumn: 1, description: "Foreign key into HelpFile table (required).", modularizeType: ColumnModularizeType.Column), |
| 32 | new ColumnDefinition("HelpNamespace_", ColumnType.String, 72, primaryKey: true, nullable: false, ColumnCategory.Identifier, keyTable: "HelpNamespace", keyColumn: 1, description: "Foreign key into HelpNamespace table (required)."), | 32 | new ColumnDefinition("HelpNamespace_", ColumnType.String, 72, primaryKey: true, nullable: false, ColumnCategory.Identifier, keyTable: "HelpNamespace", keyColumn: 1, description: "Foreign key into HelpNamespace table (required)."), |
| 33 | }, | 33 | }, |
| 34 | tupleIdIsPrimaryKey: false | 34 | symbolIdIsPrimaryKey: false |
| 35 | ); | 35 | ); |
| 36 | 36 | ||
| 37 | public static readonly TableDefinition HelpFilter = new TableDefinition( | 37 | public static readonly TableDefinition HelpFilter = new TableDefinition( |
| 38 | "HelpFilter", | 38 | "HelpFilter", |
| 39 | VSTupleDefinitions.HelpFilter, | 39 | VSSymbolDefinitions.HelpFilter, |
| 40 | new[] | 40 | new[] |
| 41 | { | 41 | { |
| 42 | new ColumnDefinition("FilterKey", ColumnType.String, 72, primaryKey: true, nullable: false, ColumnCategory.Identifier, description: "Primary Key for HelpFilter (required).", modularizeType: ColumnModularizeType.Column), | 42 | new ColumnDefinition("FilterKey", ColumnType.String, 72, primaryKey: true, nullable: false, ColumnCategory.Identifier, description: "Primary Key for HelpFilter (required).", modularizeType: ColumnModularizeType.Column), |
| 43 | new ColumnDefinition("Description", ColumnType.Localized, 0, primaryKey: false, nullable: false, ColumnCategory.Text, description: "Friendly name for Filter (required)."), | 43 | new ColumnDefinition("Description", ColumnType.Localized, 0, primaryKey: false, nullable: false, ColumnCategory.Text, description: "Friendly name for Filter (required)."), |
| 44 | new ColumnDefinition("QueryString", ColumnType.String, 0, primaryKey: false, nullable: true, ColumnCategory.Text, description: "Query String for Help Filter (optional)."), | 44 | new ColumnDefinition("QueryString", ColumnType.String, 0, primaryKey: false, nullable: true, ColumnCategory.Text, description: "Query String for Help Filter (optional)."), |
| 45 | }, | 45 | }, |
| 46 | tupleIdIsPrimaryKey: true | 46 | symbolIdIsPrimaryKey: true |
| 47 | ); | 47 | ); |
| 48 | 48 | ||
| 49 | public static readonly TableDefinition HelpFilterToNamespace = new TableDefinition( | 49 | public static readonly TableDefinition HelpFilterToNamespace = new TableDefinition( |
| 50 | "HelpFilterToNamespace", | 50 | "HelpFilterToNamespace", |
| 51 | VSTupleDefinitions.HelpFilterToNamespace, | 51 | VSSymbolDefinitions.HelpFilterToNamespace, |
| 52 | new[] | 52 | new[] |
| 53 | { | 53 | { |
| 54 | new ColumnDefinition("HelpFilter_", ColumnType.String, 72, primaryKey: true, nullable: false, ColumnCategory.Identifier, keyTable: "HelpFilter", keyColumn: 1, description: "Foreign key into HelpFilter table (required).", modularizeType: ColumnModularizeType.Column), | 54 | new ColumnDefinition("HelpFilter_", ColumnType.String, 72, primaryKey: true, nullable: false, ColumnCategory.Identifier, keyTable: "HelpFilter", keyColumn: 1, description: "Foreign key into HelpFilter table (required).", modularizeType: ColumnModularizeType.Column), |
| 55 | new ColumnDefinition("HelpNamespace_", ColumnType.String, 72, primaryKey: true, nullable: false, ColumnCategory.Identifier, keyTable: "HelpNamespace", keyColumn: 1, description: "Foreign key into HelpNamespace table (required)."), | 55 | new ColumnDefinition("HelpNamespace_", ColumnType.String, 72, primaryKey: true, nullable: false, ColumnCategory.Identifier, keyTable: "HelpNamespace", keyColumn: 1, description: "Foreign key into HelpNamespace table (required)."), |
| 56 | }, | 56 | }, |
| 57 | tupleIdIsPrimaryKey: false | 57 | symbolIdIsPrimaryKey: false |
| 58 | ); | 58 | ); |
| 59 | 59 | ||
| 60 | public static readonly TableDefinition HelpNamespace = new TableDefinition( | 60 | public static readonly TableDefinition HelpNamespace = new TableDefinition( |
| 61 | "HelpNamespace", | 61 | "HelpNamespace", |
| 62 | VSTupleDefinitions.HelpNamespace, | 62 | VSSymbolDefinitions.HelpNamespace, |
| 63 | new[] | 63 | new[] |
| 64 | { | 64 | { |
| 65 | new ColumnDefinition("NamespaceKey", ColumnType.String, 72, primaryKey: true, nullable: false, ColumnCategory.Identifier, description: "Primary Key for HelpNamespace (required)."), | 65 | new ColumnDefinition("NamespaceKey", ColumnType.String, 72, primaryKey: true, nullable: false, ColumnCategory.Identifier, description: "Primary Key for HelpNamespace (required)."), |
| @@ -67,12 +67,12 @@ namespace WixToolset.VisualStudio | |||
| 67 | new ColumnDefinition("File_Collection", ColumnType.String, 72, primaryKey: false, nullable: false, ColumnCategory.Identifier, keyTable: "File", keyColumn: 1, description: "Key for HxC (Collection) file (required).", modularizeType: ColumnModularizeType.Column), | 67 | new ColumnDefinition("File_Collection", ColumnType.String, 72, primaryKey: false, nullable: false, ColumnCategory.Identifier, keyTable: "File", keyColumn: 1, description: "Key for HxC (Collection) file (required).", modularizeType: ColumnModularizeType.Column), |
| 68 | new ColumnDefinition("Description", ColumnType.Localized, 0, primaryKey: false, nullable: true, ColumnCategory.Text, description: "Friendly name for Namespace (optional)."), | 68 | new ColumnDefinition("Description", ColumnType.Localized, 0, primaryKey: false, nullable: true, ColumnCategory.Text, description: "Friendly name for Namespace (optional)."), |
| 69 | }, | 69 | }, |
| 70 | tupleIdIsPrimaryKey: true | 70 | symbolIdIsPrimaryKey: true |
| 71 | ); | 71 | ); |
| 72 | 72 | ||
| 73 | public static readonly TableDefinition HelpPlugin = new TableDefinition( | 73 | public static readonly TableDefinition HelpPlugin = new TableDefinition( |
| 74 | "HelpPlugin", | 74 | "HelpPlugin", |
| 75 | VSTupleDefinitions.HelpPlugin, | 75 | VSSymbolDefinitions.HelpPlugin, |
| 76 | new[] | 76 | new[] |
| 77 | { | 77 | { |
| 78 | new ColumnDefinition("HelpNamespace_", ColumnType.String, 72, primaryKey: true, nullable: false, ColumnCategory.Identifier, keyTable: "HelpNamespace", keyColumn: 1, description: "Foreign key into HelpNamespace table for the child namespace that will be plugged into the parent namespace (required)."), | 78 | new ColumnDefinition("HelpNamespace_", ColumnType.String, 72, primaryKey: true, nullable: false, ColumnCategory.Identifier, keyTable: "HelpNamespace", keyColumn: 1, description: "Foreign key into HelpNamespace table for the child namespace that will be plugged into the parent namespace (required)."), |
| @@ -81,7 +81,7 @@ namespace WixToolset.VisualStudio | |||
| 81 | new ColumnDefinition("File_HxA", ColumnType.String, 72, primaryKey: false, nullable: true, ColumnCategory.Identifier, keyTable: "File", keyColumn: 1, description: "Key for HxA (Attributes) file of child namespace (optional).", modularizeType: ColumnModularizeType.Column), | 81 | new ColumnDefinition("File_HxA", ColumnType.String, 72, primaryKey: false, nullable: true, ColumnCategory.Identifier, keyTable: "File", keyColumn: 1, description: "Key for HxA (Attributes) file of child namespace (optional).", modularizeType: ColumnModularizeType.Column), |
| 82 | new ColumnDefinition("File_ParentHxT", ColumnType.String, 72, primaryKey: false, nullable: true, ColumnCategory.Identifier, keyTable: "File", keyColumn: 1, description: "Key for HxT file of parent namespace that now includes the new child namespace (optional).", modularizeType: ColumnModularizeType.Column), | 82 | new ColumnDefinition("File_ParentHxT", ColumnType.String, 72, primaryKey: false, nullable: true, ColumnCategory.Identifier, keyTable: "File", keyColumn: 1, description: "Key for HxT file of parent namespace that now includes the new child namespace (optional).", modularizeType: ColumnModularizeType.Column), |
| 83 | }, | 83 | }, |
| 84 | tupleIdIsPrimaryKey: false | 84 | symbolIdIsPrimaryKey: false |
| 85 | ); | 85 | ); |
| 86 | 86 | ||
| 87 | public static readonly TableDefinition[] All = new[] | 87 | public static readonly TableDefinition[] All = new[] |
