-
Notifications
You must be signed in to change notification settings - Fork 10
/
appveyor.yml
45 lines (32 loc) · 918 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
42
43
44
45
version: 0.1.0.{build}
#---------------------------------#
# environment configuration #
#---------------------------------#
# Build worker image (VM template)
image: Visual Studio 2015
init:
- git config --global core.autocrlf input
#---------------------------------#
# build configuration #
#---------------------------------#
platform:
- Any CPU
configuration:
- Release
before_build:
- nuget restore PerformanceTest.sln
- nuget restore ImportData.sln
build:
parallel: true # enable MSBuild parallel builds
project: PerformanceTest.sln # path to Visual Studio solution or project
#---------------------------------#
# tests configuration #
#---------------------------------#
# to run tests again only selected assemblies and/or categories
test:
assemblies:
only:
- tests\**\*.dll
artifacts:
- path: bin
name: bin