-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathappveyor.yml
35 lines (35 loc) · 1.07 KB
/
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
33
34
35
version: 1.1.{build}
os: Visual Studio 2019
skip_tags: true
configuration: Release
platform: Any CPU
test: off
branches:
only:
- master
environment:
CoverallsRepoToken:
secure: L60mbCAOvZODwY3jnXtDc+d7fMJhlWhqOaYry0+YAZxsM139e32GZ9mrXiBQboy9
NuGetApiKey:
secure: Fu7vXeOuWmvDK7WGNsEbTIV2vhDV4P6PiK5k1+UZOmwldhCfvUvkA4HOkml+ZE/n
# Install dotnet core 3.0 latest (alpha!!), as this is not provided on AppVeyor yet
install:
- ps: Start-FileDownload 'https://dotnetcli.blob.core.windows.net/dotnet/Sdk/master/dotnet-sdk-latest-win-x64.exe'
- ps: Start-Process .\dotnet-sdk-latest-win-x64.exe "/install /norestart /quiet /log sdkinstall.log" -NoNewWindow -Wait
- ps: dotnet --info
build_script:
- ps: .\build.ps1 --settings_skipverification=true --settings_skippackageversioncheck=true
cache:
- tools -> tools/packages.config
artifacts:
- path: src\**\*.nupkg
- path: artifacts\**\site.zip
- path: artifacts\*.xml
- path: artifacts\*.html
notifications:
- provider: Email
to:
on_build_success: true
on_build_failure: true
on_build_status_changed: false