-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
8 lines (8 loc) · 978 Bytes
/
appveyor.yml
1
2
3
4
5
6
7
8
before_build:
- nuget restore
build_script:
- choco install "msbuild-sonarqube-runner" -y
- MSBuild.SonarQube.Runner.exe begin /k:"ebcdic-compare-tool" /d:"sonar.host.url=https://sonarqube.com" /d:"sonar.login=53b27a2d5e649f3709c2ac12936770c0804739fb" /d:sonar.cs.opencover.reportsPaths="opencover.xml"
- msbuild "CodeMovement.EbcdicCompare.sln"
- .\packages\OpenCover.4.6.519\tools\OpenCover.Console.exe -register:user -target:"C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\IDE\MSTest.exe" -targetargs:"/testsettings:\".\CI_Config.testsettings\" /noresults /noisolation /testcontainer:\".\CodeMovement.EbcdicCompare.UnitTests\bin\Debug\CodeMovement.EbcdicCompare.UnitTests.dll\"" -filter:"+[CodeMovement.EbcdicCompare*]* -[CodeMovement.EbcdicCompare.Presentation]*View" -excludebyattribute:*.ExcludeFromCodeCoverage* -hideskipped:All -output:.\opencover.xml
- MSBuild.SonarQube.Runner.exe end /d:"sonar.login=53b27a2d5e649f3709c2ac12936770c0804739fb"