forked from MahApps/MahApps.Metro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
31 lines (24 loc) · 797 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
# http://www.appveyor.com/docs/appveyor-yml
# configuration for develop/CI and master/Release branch
-
branches:
only:
- develop
- master
skip_tags: true
image: Visual Studio 2017
configuration: Release
platform: Any CPU
test: off
# 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
pull_requests:
do_not_increment_build_number: false
build_script:
- ps: .\build.ps1 -target appveyor
artifacts:
- path: \Publish\*.*
nuget:
disable_publish_on_pr: true