diff options
| author | Bob Arnson <bob@firegiant.com> | 2021-12-19 00:01:29 -0500 |
|---|---|---|
| committer | Bob Arnson <github@bobs.org> | 2021-12-19 14:12:31 -0500 |
| commit | 32fb169d4c8f5065e43b1351cc3a5b4a3d528588 (patch) | |
| tree | dfb5d8b061993386403b4e95d7bd5e77767d39bd /src/ext/NetFx/wixext | |
| parent | 7d0391599aa451f774e2db76528df266abedb004 (diff) | |
| download | wix-32fb169d4c8f5065e43b1351cc3a5b4a3d528588.tar.gz wix-32fb169d4c8f5065e43b1351cc3a5b4a3d528588.tar.bz2 wix-32fb169d4c8f5065e43b1351cc3a5b4a3d528588.zip | |
Consistent-ify primary key column names.
Diffstat (limited to 'src/ext/NetFx/wixext')
| -rw-r--r-- | src/ext/NetFx/wixext/NetfxTableDefinitions.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ext/NetFx/wixext/NetfxTableDefinitions.cs b/src/ext/NetFx/wixext/NetfxTableDefinitions.cs index 1b2a4d21..57e35323 100644 --- a/src/ext/NetFx/wixext/NetfxTableDefinitions.cs +++ b/src/ext/NetFx/wixext/NetfxTableDefinitions.cs | |||
| @@ -12,7 +12,7 @@ namespace WixToolset.Netfx | |||
| 12 | NetfxSymbolDefinitions.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("NetFxNativeImage", ColumnType.String, 72, primaryKey: true, nullable: false, ColumnCategory.Identifier, description: "The primary key, a non-localized token.", modularizeType: ColumnModularizeType.Column), |
| 16 | new ColumnDefinition("File_", ColumnType.String, 72, primaryKey: false, nullable: false, ColumnCategory.Identifier, keyTable: "File", keyColumn: 1, description: "The assembly for which a native image will be generated.", modularizeType: ColumnModularizeType.Column), | 16 | new ColumnDefinition("File_", ColumnType.String, 72, primaryKey: false, nullable: false, ColumnCategory.Identifier, keyTable: "File", keyColumn: 1, description: "The assembly for which a native image will be generated.", modularizeType: ColumnModularizeType.Column), |
| 17 | new ColumnDefinition("Priority", ColumnType.Number, 2, primaryKey: false, nullable: false, ColumnCategory.Integer, minValue: 0, maxValue: 3, description: "The priority for generating this native image: 0 is syncronous, 1-3 represent various levels of queued generation."), | 17 | new ColumnDefinition("Priority", ColumnType.Number, 2, primaryKey: false, nullable: false, ColumnCategory.Integer, minValue: 0, maxValue: 3, description: "The priority for generating this native image: 0 is syncronous, 1-3 represent various levels of queued generation."), |
| 18 | new ColumnDefinition("Attributes", ColumnType.Number, 4, primaryKey: false, nullable: false, ColumnCategory.Integer, minValue: 0, maxValue: 2147483647, description: "Integer containing bit flags representing native image attributes."), | 18 | new ColumnDefinition("Attributes", ColumnType.Number, 4, primaryKey: false, nullable: false, ColumnCategory.Integer, minValue: 0, maxValue: 2147483647, description: "Integer containing bit flags representing native image attributes."), |
