forked from MarcosMeli/FileHelpers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
17 lines (15 loc) · 906 Bytes
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
version: 3.1.0.{build}
skip_tags: true
configuration: Debug
platform: Any CPU
install:
- ps: >-
nuget install Build\.nuget\packages.config -OutputDirectory packages
nuget restore FileHelpers.sln
build:
project: FileHelpers.sln
verbosity: minimal
test_script:
- ps: >-
.\packages\OpenCover.4.6.166\tools\OpenCover.Console.exe -register:user -target:nunit-console.exe -register:user "-targetargs:""FileHelpers.Tests\Release\FileHelpers.Tests.dll"" /noshadow" -filter:"" -output:opencoverCoverage.xml
.\packages\coveralls.net.0.5.0\csmacnz.Coveralls.exe --opencover -i opencoverCoverage.xml --repoToken $env:COVERALLS_REPO_TOKEN --commitId $env:APPVEYOR_REPO_COMMIT --commitBranch $env:APPVEYOR_REPO_BRANCH --commitAuthor $env:APPVEYOR_REPO_COMMIT_AUTHOR --commitEmail $env:APPVEYOR_REPO_COMMIT_AUTHOR_EMAIL --commitMessage $env:APPVEYOR_REPO_COMMIT_MESSAGE --jobId $env:APPVEYOR_JOB_ID