From 836cb478b674e866e1430c03afb9651e85b48f2a Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Mon, 13 Apr 2020 19:42:12 +1000 Subject: Update dependencies. --- appveyor.yml | 5 +++++ src/Cpp.Build.props | 18 ------------------ src/wixext/HttpTableDefinitions.cs | 4 ++-- src/wixlib/http.wixproj | 4 ++-- src/wixlib/packages.config | 2 +- 5 files changed, 10 insertions(+), 23 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index bbf880f0..7c686b04 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -3,6 +3,11 @@ # Do NOT modify this file. Update the canonical version in Home\repo-template\src\appveyor.yml # then update all of the repos. +branches: + only: + - master + - develop + image: Visual Studio 2019 version: 0.0.0.{build} diff --git a/src/Cpp.Build.props b/src/Cpp.Build.props index 44a042c7..9b7a1bb5 100644 --- a/src/Cpp.Build.props +++ b/src/Cpp.Build.props @@ -70,12 +70,6 @@ MultiThreadedDebug - - - - MultiThreadedDebugDll - - MinSpace @@ -89,16 +83,4 @@ true - - - - MultiThreadedDll - - - - - $(LinkKeyFile) - $(LinkDelaySign) - - diff --git a/src/wixext/HttpTableDefinitions.cs b/src/wixext/HttpTableDefinitions.cs index 57422475..2ec26b63 100644 --- a/src/wixext/HttpTableDefinitions.cs +++ b/src/wixext/HttpTableDefinitions.cs @@ -8,6 +8,7 @@ namespace WixToolset.Http { public static readonly TableDefinition WixHttpUrlReservation = new TableDefinition( "WixHttpUrlReservation", + HttpTupleDefinitions.WixHttpUrlReservation, new[] { new ColumnDefinition("WixHttpUrlReservation", ColumnType.String, 72, primaryKey: true, nullable: false, ColumnCategory.Identifier, description: "The non-localized primary key for the table.", modularizeType: ColumnModularizeType.Column), @@ -16,12 +17,12 @@ namespace WixToolset.Http new ColumnDefinition("Url", ColumnType.String, 0, primaryKey: false, nullable: false, ColumnCategory.Formatted, description: "URL to be reserved.", modularizeType: ColumnModularizeType.Property), new ColumnDefinition("Component_", ColumnType.String, 72, primaryKey: false, nullable: false, ColumnCategory.Identifier, keyTable: "Component", keyColumn: 1, description: "Foreign key into the Component table referencing the component that controls the URL reservation.", modularizeType: ColumnModularizeType.Column), }, - tupleDefinitionName: HttpTupleDefinitions.WixHttpUrlReservation.Name, tupleIdIsPrimaryKey: true ); public static readonly TableDefinition WixHttpUrlAce = new TableDefinition( "WixHttpUrlAce", + HttpTupleDefinitions.WixHttpUrlAce, new[] { new ColumnDefinition("WixHttpUrlAce", ColumnType.String, 72, primaryKey: true, nullable: false, ColumnCategory.Identifier, description: "The non-localized primary key for the table.", modularizeType: ColumnModularizeType.Column), @@ -29,7 +30,6 @@ namespace WixToolset.Http new ColumnDefinition("SecurityPrincipal", ColumnType.String, 0, primaryKey: false, nullable: false, ColumnCategory.Formatted, description: "The security principal for this ACE.", modularizeType: ColumnModularizeType.Property), new ColumnDefinition("Rights", ColumnType.Number, 4, primaryKey: false, nullable: false, ColumnCategory.Unknown, minValue: 0, maxValue: 1073741824, description: "The rights for this ACE."), }, - tupleDefinitionName: HttpTupleDefinitions.WixHttpUrlAce.Name, tupleIdIsPrimaryKey: true ); diff --git a/src/wixlib/http.wixproj b/src/wixlib/http.wixproj index f787ebb1..b0bcd7cf 100644 --- a/src/wixlib/http.wixproj +++ b/src/wixlib/http.wixproj @@ -1,7 +1,7 @@ - + {055C1517-4CED-4199-BCDE-A383E5C4EF78} @@ -36,7 +36,7 @@ This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - + diff --git a/src/wixlib/packages.config b/src/wixlib/packages.config index e1b601f6..1e5a9850 100644 --- a/src/wixlib/packages.config +++ b/src/wixlib/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file -- cgit v1.2.3-55-g6feb