From 5a311e45eea4f817bbbfb1e31e0cae5385cc32ce Mon Sep 17 00:00:00 2001 From: mbdavid Date: Fri, 25 Oct 2019 14:02:36 -0300 Subject: [PATCH] Adding appveyor to signpath --- LiteDB/LiteDB.csproj | 2 +- appveyor.yml | 37 +++++++++++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+), 1 deletion(-) create mode 100644 appveyor.yml diff --git a/LiteDB/LiteDB.csproj b/LiteDB/LiteDB.csproj index b80be6135..b2b180bc7 100644 --- a/LiteDB/LiteDB.csproj +++ b/LiteDB/LiteDB.csproj @@ -13,7 +13,7 @@ en-US LiteDB LiteDB - 5.0.0-alpha2 + 5.0.0-beta database nosql embedded http://www.litedb.org/img/logo_64x64.png https://www.litedb.org diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 000000000..e576f4ada --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,37 @@ +version: 5.0.{build} +branches: + only: + - master +image: Visual Studio 2017 +configuration: + - Debug + - Release +platform: Any CPU +before_build: + - cmd: nuget restore LiteDB.sln +build: + project: LiteDB.sln + verbosity: minimal +for: +- + matrix: + only: + - configuration: Release + artifacts: + - path: LiteDB\bin\Release\net45\LiteDB.dll + deploy: + - provider: Webhook + url: https://app.signpath.io/API/v1/f5b329b8-705f-4d6c-928a-19465b83716b/Integrations/AppVeyor?ProjectKey=LiteDB.gitDB&SigningPolicyKey=release-signing + authorization: + secure: 3eLjGkpQC1wg1s5GIEqs7yk/V8OZNnpKmpwdsaloGExc5jMspM4nA7u/UlG5ugraEyXRC05ZxLU4FIfH2V2BEg== +- + matrix: + only: + - configuration: Debug + artifacts: + - path: LiteDB\bin\Debug\net45\LiteDB.dll + deploy: + - provider: Webhook + url: https://app.signpath.io/API/v1/f5b329b8-705f-4d6c-928a-19465b83716b/Integrations/AppVeyor?ProjectKey=LiteDB.gitDB&SigningPolicyKey=test-signing + authorization: + secure: 3eLjGkpQC1wg1s5GIEqs7yk/V8OZNnpKmpwdsaloGExc5jMspM4nA7u/UlG5ugraEyXRC05ZxLU4FIfH2V2BEg== \ No newline at end of file