forked from MahApps/MahApps.Metro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
33 lines (25 loc) · 1.04 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
# 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
image: Visual Studio 2019 Preview
configuration: Release
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
- ps: Start-FileDownload 'https://dotnetcli.blob.core.windows.net/dotnet/Sdk/3.0.100-preview-010213/dotnet-sdk-3.0.100-preview-010213-win-x64.exe'
- ps: Start-Process .\dotnet-sdk-3.0.100-preview-010213-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