forked from vantheshark/Flatwhite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
25 lines (16 loc) · 884 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
# build script for AppVeyor
version: 1.0.{build}
configuration: Release
platform: Any CPU
environment:
COVERALLS_REPO_TOKEN:
secure: e/oDVJZrz6WCzy8HKGaJVTNbipT2sIJIFRFLIGT/sVMAxkd5V0dxgnkEWII5axJ8
before_build:
- cmd: nuget restore Flatwhite.sln
build:
project: Flatwhite.sln
verbosity: minimal
after_test:
# generate report for NUnit testing framework:
- packages\OpenCover.4.6.166\tools\OpenCover.Console.exe -target:packages/NUnit.Runners.2.6.4/tools/nunit-console.exe -register:user "-targetargs:""Tests\Flatwhite.Tests\bin\Release\Flatwhite.Tests.dll"" /noshadow" -filter:"+[Flatwhite]* +[Flatwhite.Autofac]* +[Flatwhite.WebApi]*" -excludebyattribute:*.ExcludeFromCodeCoverage* -enableperformancecounters -output:opencoverCoverage.xml -hideskipped:all
- packages\coveralls.io.1.3.4\tools\coveralls.net.exe --opencover opencoverCoverage.xml