forked from DotNetKoans/DotNetKoans
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
53 lines (39 loc) · 1.27 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# Reference: https://www.appveyor.com/docs/appveyor-yml/
#---------------------------------#
# general configuration #
#---------------------------------#
# version format
version: 2.1.0.{build}
# Skipping commits affecting specific files (GitHub only). More details here: /docs/appveyor-yml
skip_commits:
files:
- docs/*
- '**/*.md'
- '*.md'
#---------------------------------#
# environment configuration #
#---------------------------------#
environment:
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
DOTNET_CLI_TELEMETRY_OPTOUT: 1
pull_requests:
do_not_increment_build_number: true
#---------------------------------#
# build configuration #
#---------------------------------#
# build platform, i.e. x86, x64, Any CPU. This setting is optional.
platform: Any CPU
# build Configuration, i.e. Debug, Release, etc.
configuration:
- Release
before_build:
- dotnet restore
build:
parallel: true # enable MSBuild parallel builds
verbosity: minimal # MSBuild verbosity level
project: DotNetCoreKoans.sln # path to Visual Studio solution or project
#---------------------------------#
# tests configuration #
#---------------------------------#
test_script:
- dotnet test -c %CONFIGURATION%