diff options
Diffstat (limited to 'src/wixext/NetfxTableDefinitions.cs')
-rw-r--r-- | src/wixext/NetfxTableDefinitions.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wixext/NetfxTableDefinitions.cs b/src/wixext/NetfxTableDefinitions.cs index a94b0d2f..1b2a4d21 100644 --- a/src/wixext/NetfxTableDefinitions.cs +++ b/src/wixext/NetfxTableDefinitions.cs | |||
@@ -3,13 +3,13 @@ | |||
3 | namespace WixToolset.Netfx | 3 | namespace WixToolset.Netfx |
4 | { | 4 | { |
5 | using WixToolset.Data.WindowsInstaller; | 5 | using WixToolset.Data.WindowsInstaller; |
6 | using WixToolset.Netfx.Tuples; | 6 | using WixToolset.Netfx.Symbols; |
7 | 7 | ||
8 | public static class NetfxTableDefinitions | 8 | public static class NetfxTableDefinitions |
9 | { | 9 | { |
10 | public static readonly TableDefinition NetFxNativeImage = new TableDefinition( | 10 | public static readonly TableDefinition NetFxNativeImage = new TableDefinition( |
11 | "Wix4NetFxNativeImage", | 11 | "Wix4NetFxNativeImage", |
12 | NetfxTupleDefinitions.NetFxNativeImage, | 12 | NetfxSymbolDefinitions.NetFxNativeImage, |
13 | new[] | 13 | new[] |
14 | { | 14 | { |
15 | new ColumnDefinition("Wix4NetFxNativeImage", ColumnType.String, 72, primaryKey: true, nullable: false, ColumnCategory.Identifier, description: "The primary key, a non-localized token.", modularizeType: ColumnModularizeType.Column), | 15 | new ColumnDefinition("Wix4NetFxNativeImage", ColumnType.String, 72, primaryKey: true, nullable: false, ColumnCategory.Identifier, description: "The primary key, a non-localized token.", modularizeType: ColumnModularizeType.Column), |
@@ -19,7 +19,7 @@ namespace WixToolset.Netfx | |||
19 | new ColumnDefinition("File_Application", ColumnType.String, 72, primaryKey: false, nullable: true, ColumnCategory.Formatted, description: "The application which loads this assembly.", modularizeType: ColumnModularizeType.Column), | 19 | new ColumnDefinition("File_Application", ColumnType.String, 72, primaryKey: false, nullable: true, ColumnCategory.Formatted, description: "The application which loads this assembly.", modularizeType: ColumnModularizeType.Column), |
20 | new ColumnDefinition("Directory_ApplicationBase", ColumnType.String, 72, primaryKey: false, nullable: true, ColumnCategory.Formatted, description: "The directory containing the application which loads this assembly.", modularizeType: ColumnModularizeType.Column), | 20 | new ColumnDefinition("Directory_ApplicationBase", ColumnType.String, 72, primaryKey: false, nullable: true, ColumnCategory.Formatted, description: "The directory containing the application which loads this assembly.", modularizeType: ColumnModularizeType.Column), |
21 | }, | 21 | }, |
22 | tupleIdIsPrimaryKey: true | 22 | symbolIdIsPrimaryKey: true |
23 | ); | 23 | ); |
24 | 24 | ||
25 | public static readonly TableDefinition[] All = new[] | 25 | public static readonly TableDefinition[] All = new[] |