forked from StephenClearyArchive/AsyncEx.Context
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
32 lines (28 loc) · 844 Bytes
/
appveyor.yml
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
29
30
31
32
version: '{build}'
os: Visual Studio 2015
configuration: Debug
environment:
COVERALLS_REPO_TOKEN:
secure: jAQTz3P+hEm9gY5/MjyOMA39YpkC4taE2Xzot5MxyqKssYRJ557oQdyOnVOmcUk0
branches:
only:
- master
install:
- ps: >-
nuget update -self
Invoke-WebRequest "https://raw.githubusercontent.com/dotnet/cli/rel/1.0.0-preview2/scripts/obtain/dotnet-install.ps1" -OutFile ".\dotnet-install.ps1"
$env:DOTNET_INSTALL_DIR = "$pwd\.dotnetcli"
& .\dotnet-install.ps1 -Channel "preview" -Version "1.0.0-preview2-003121" -InstallDir "$env:DOTNET_INSTALL_DIR"
build_script:
- ps: ./Build.ps1
test_script:
- ps: ./Coverage.ps1
artifacts:
- path: '**\*.nupkg'
name: NuGet Packages
deploy:
provider: NuGet
api_key:
secure: QeC34B7ohkvqbwCOKmavQWhitZNYLX/EFdgK8CfL5jEujWw2L85qrzuME8CQRBEb
on:
appveyor_repo_tag: true