From efada37cd768035b2a7e586af56d39780494d729 Mon Sep 17 00:00:00 2001 From: dbuechel Date: Fri, 26 Jul 2019 13:46:44 +0200 Subject: [PATCH] SEBWIN-300: Fixed path of setup artifact. --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 4ad8ce5d..fa930bf9 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -13,7 +13,7 @@ before_build: build_script: - msbuild /verbosity:minimal "SafeExamBrowser.sln" after_build: - - appveyor PushArtifact "Setup\bin\$(configuration)\Setup.msi" -FileName "SEB_$(appveyor_build_version)_Setup.msi" -DeploymentName "SEB_$(appveyor_build_version)_Setup" + - appveyor PushArtifact "Setup\bin\{configuration}\Setup.msi" -FileName "SEB_$(appveyor_build_version)_Setup.msi" -DeploymentName "SEB_$(appveyor_build_version)_Setup" test_script: - .\packages\OpenCover.4.7.922\tools\OpenCover.Console.exe -register:user -target:"vstest.console.exe" -targetargs:"/logger:Appveyor .\SafeExamBrowser.Client.UnitTests\bin\%PLATFORM%\%CONFIGURATION%\SafeExamBrowser.Client.UnitTests.dll" -filter:"+[*]* -[*.UnitTests]* -[*Moq*]*" -mergebyhash -output:"coverage.xml" - .\packages\OpenCover.4.7.922\tools\OpenCover.Console.exe -register:user -target:"vstest.console.exe" -targetargs:"/logger:Appveyor .\SafeExamBrowser.Communication.UnitTests\bin\%PLATFORM%\%CONFIGURATION%\SafeExamBrowser.Communication.UnitTests.dll" -filter:"+[*]* -[*.UnitTests]* -[*Moq*]*" -mergebyhash -mergeoutput -output:"coverage.xml"