aboutsummaryrefslogtreecommitdiff
path: root/src/wixext
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-04-13 19:14:39 +1000
committerSean Hall <r.sean.hall@gmail.com>2020-04-13 19:14:39 +1000
commitff96f679e443ce19f87d2a33dcbe7404128b0b0c (patch)
tree7262052993b8be85bcd92b74a7d2c88fc3931985 /src/wixext
parent5a5013dd44116cac92d4e1608e15a4df6d2d51fe (diff)
downloadwix-ff96f679e443ce19f87d2a33dcbe7404128b0b0c.tar.gz
wix-ff96f679e443ce19f87d2a33dcbe7404128b0b0c.tar.bz2
wix-ff96f679e443ce19f87d2a33dcbe7404128b0b0c.zip
Update dependencies.
Diffstat (limited to 'src/wixext')
-rw-r--r--src/wixext/NetfxTableDefinitions.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wixext/NetfxTableDefinitions.cs b/src/wixext/NetfxTableDefinitions.cs
index 378f6def..a94b0d2f 100644
--- a/src/wixext/NetfxTableDefinitions.cs
+++ b/src/wixext/NetfxTableDefinitions.cs
@@ -3,11 +3,13 @@
3namespace WixToolset.Netfx 3namespace WixToolset.Netfx
4{ 4{
5 using WixToolset.Data.WindowsInstaller; 5 using WixToolset.Data.WindowsInstaller;
6 using WixToolset.Netfx.Tuples;
6 7
7 public static class NetfxTableDefinitions 8 public static class NetfxTableDefinitions
8 { 9 {
9 public static readonly TableDefinition NetFxNativeImage = new TableDefinition( 10 public static readonly TableDefinition NetFxNativeImage = new TableDefinition(
10 "Wix4NetFxNativeImage", 11 "Wix4NetFxNativeImage",
12 NetfxTupleDefinitions.NetFxNativeImage,
11 new[] 13 new[]
12 { 14 {
13 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),
@@ -17,7 +19,6 @@ namespace WixToolset.Netfx
17 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),
18 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),
19 }, 21 },
20 tupleDefinitionName: "NetFxNativeImage",
21 tupleIdIsPrimaryKey: true 22 tupleIdIsPrimaryKey: true
22 ); 23 );
23 24