summary refs log tree commit diff
path: root/appveyor.yml
blob: b7b7df4a8497f743103785de0ac5a13ea464882a (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
configuration: Release
image: Visual Studio 2017

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

environment:
  SignClientSecret:
    secure: S26+NphAhj/vo5ZdHd/N/4toty3ztdNGmuNdvAB57W1oIVQEHVKqAVuhTD8B9ATy

install:  
  - cmd: nuget install SignClient -Version 0.7.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'  

artifacts:
  - path: '*.nupkg'