summary refs log tree commit diff
path: root/appveyor.yml
blob: a14a5529af92dd8dfd4d30b21785b4b661f9acd9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
configuration: Release
image: Visual Studio 2017

init:
  - git config --global core.autocrlf input

environment:
  SignClientSecret:
    secure: EvUuRb2cdsB5h7dJ49CkDDsZHHbwomGvMbcVcRsCSIp58IxVHFzAZrJSE+qpihtU
  SignClientUser:
    secure: 9nw9iBguE89m36udK51REeCIHSi5lAXmFIfS5LuAXio=

install:  
  - cmd: nuget install SignClient -Version 0.9.0 -SolutionDir %APPVEYOR_BUILD_FOLDER% -Verbosity quiet -ExcludeVersion -pre

build_script:
  - cmd: msbuild /t:restore BouncyCastle.sln
  - cmd: msbuild /t:build BouncyCastle.sln 
  - cmd: msbuild /t:pack crypto\src\crypto.csproj /p:PackageId="Portable.BouncyCastle" /p:PackageOutputPath="%APPVEYOR_BUILD_FOLDER%"  
  
after_build:  
  - ps: '.\scripts\Sign-Package.ps1'  
  - cmd: dotnet test crypto\test\crypto.test.csproj --no-build

artifacts:
  - path: '*.nupkg'

test: off