diff options
author | Rob Mensching <rob@firegiant.com> | 2020-06-27 01:53:23 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2020-06-27 02:00:58 -0700 |
commit | 20572fec71899df1a19f5759c64984b6ea9b20df (patch) | |
tree | 9fa5c35ec4ca00f5b697f1bd4f143762656323ea /src/wixext/NetfxTableDefinitions.cs | |
parent | 1979837ff79b46ce0a03e25b82e239c37348ec4d (diff) | |
download | wix-20572fec71899df1a19f5759c64984b6ea9b20df.tar.gz wix-20572fec71899df1a19f5759c64984b6ea9b20df.tar.bz2 wix-20572fec71899df1a19f5759c64984b6ea9b20df.zip |
The Great Tuple to Symbol Rename (tm)
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[] |