aboutsummaryrefslogtreecommitdiff
path: root/src/wixext
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-04-13 19:55:45 +1000
committerSean Hall <r.sean.hall@gmail.com>2020-04-13 19:55:45 +1000
commitfba81fb720a87075cb78077273b038130c380b8a (patch)
tree6dcdcfd3a6c21053ba6b4fa53958308fc9edf584 /src/wixext
parent2427be20a103957f204b753db45ee89ad636bb08 (diff)
downloadwix-fba81fb720a87075cb78077273b038130c380b8a.tar.gz
wix-fba81fb720a87075cb78077273b038130c380b8a.tar.bz2
wix-fba81fb720a87075cb78077273b038130c380b8a.zip
Update dependencies.
Diffstat (limited to 'src/wixext')
-rw-r--r--src/wixext/FirewallTableDefinitions.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wixext/FirewallTableDefinitions.cs b/src/wixext/FirewallTableDefinitions.cs
index d6e469b8..4bae1ef0 100644
--- a/src/wixext/FirewallTableDefinitions.cs
+++ b/src/wixext/FirewallTableDefinitions.cs
@@ -8,6 +8,7 @@ namespace WixToolset.Firewall
8 { 8 {
9 public static readonly TableDefinition WixFirewallException = new TableDefinition( 9 public static readonly TableDefinition WixFirewallException = new TableDefinition(
10 "WixFirewallException", 10 "WixFirewallException",
11 FirewallTupleDefinitions.WixFirewallException,
11 new[] 12 new[]
12 { 13 {
13 new ColumnDefinition("WixFirewallException", ColumnType.String, 72, primaryKey: true, nullable: false, ColumnCategory.Identifier, description: "The primary key, a non-localized token.", modularizeType: ColumnModularizeType.Column), 14 new ColumnDefinition("WixFirewallException", ColumnType.String, 72, primaryKey: true, nullable: false, ColumnCategory.Identifier, description: "The primary key, a non-localized token.", modularizeType: ColumnModularizeType.Column),
@@ -21,7 +22,6 @@ namespace WixToolset.Firewall
21 new ColumnDefinition("Component_", ColumnType.String, 72, primaryKey: false, nullable: false, ColumnCategory.Identifier, keyTable: "Component", keyColumn: 1, description: "Foreign key into the Component table referencing component that controls the firewall configuration.", modularizeType: ColumnModularizeType.Column), 22 new ColumnDefinition("Component_", ColumnType.String, 72, primaryKey: false, nullable: false, ColumnCategory.Identifier, keyTable: "Component", keyColumn: 1, description: "Foreign key into the Component table referencing component that controls the firewall configuration.", modularizeType: ColumnModularizeType.Column),
22 new ColumnDefinition("Description", ColumnType.String, 255, primaryKey: false, nullable: true, ColumnCategory.Formatted, description: "Description displayed in Windows Firewall manager for this firewall rule."), 23 new ColumnDefinition("Description", ColumnType.String, 255, primaryKey: false, nullable: true, ColumnCategory.Formatted, description: "Description displayed in Windows Firewall manager for this firewall rule."),
23 }, 24 },
24 tupleDefinitionName: FirewallTupleDefinitions.WixFirewallException.Name,
25 tupleIdIsPrimaryKey: true 25 tupleIdIsPrimaryKey: true
26 ); 26 );
27 27