diff --git a/Hochbaustatistik/config/Jenkinsfile b/Hochbaustatistik/config/Jenkinsfile index dd45eff..2ceb4f0 100644 --- a/Hochbaustatistik/config/Jenkinsfile +++ b/Hochbaustatistik/config/Jenkinsfile @@ -21,7 +21,7 @@ pipeline cleanWs() checkout scm bat "dotnet restore Hochbaustatistik\\Hochbaustatistik.sln" - bat "\"${tool 'MSBuild17'}\" ${WORKSPACE}\\Hochbaustatistik\\Hochbaustatistik.sln /t:Restore /t:Rebuild /p:Configuration=Debug" + bat "\"${tool 'MSBuild17'}\" ${WORKSPACE}\\Hochbaustatistik.sln /t:Restore /t:Rebuild /p:Configuration=Debug" } } stage('Test') @@ -34,7 +34,7 @@ pipeline { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { - bat "dotnet test ${WORKSPACE}\\Hochbaustatistik\\Hochbaustatistik.Testing\\Hochbaustatistik.Testing.csproj /p:CollectCoverage=true /p:CoverletOutputFormat=opencover /p:CoverletOutput=..\\..\\coverage.xml /p:Exclude=[Scan2Compress.GUI]*%2c[Scan2Compress.Properties]* --no-build" + bat "dotnet test ${WORKSPACE}\\Hochbaustatistik.Testing\\Hochbaustatistik.Testing.csproj /p:CollectCoverage=true /p:CoverletOutputFormat=opencover /p:CoverletOutput=..\\..\\coverage.xml /p:Exclude=[Scan2Compress.GUI]*%2c[Scan2Compress.Properties]* --no-build" } } }