-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathappveyor.yml
41 lines (36 loc) · 975 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
33
34
35
36
37
38
39
40
41
version: "0.0.1.{build}"
pull_requests:
do_not_increment_build_number: true
image: Visual Studio 2017
environment:
COVERALLS_REPO_TOKEN:
secure: EpNdzj3IQUSrXiz0O1EGjAwPV5AhZJy1XovtymuCMqIYbj3ziJAY1OcjRwfkt5DG
install:
- git submodule update --init --recursive
- nuget restore TheFlow.Core.sln
nuget:
disable_publish_on_pr: true
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '{version}'
package_version: '{version}'
assembly_version: '{version}'
file_version: '{version}'
informational_version: '{version}'
build_script:
- ps: .\Build.ps1
test: off
artifacts:
- path: .\src\TheFlow\artifacts\**\*.nupkg
name: NuGet
deploy:
- provider: NuGet
api_key:
secure: NKrMxQUn7fqteI+uf4gFMpitYZPVX4H1fAkzAJQA+SYl6dnhyu3VyZLufigRJBZp
skip_symbols: true
on:
branch: master
after_build:
- >
%userprofile%\.nuget\packages\coveralls.io\1.4.2\tools\coveralls.net.exe --opencover test/coverage.xml -r %COVERALLS_REPO_TOKEN%