We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36e6393 commit 42d1500Copy full SHA for 42d1500
src/run-coverage.ps1
@@ -8,8 +8,8 @@ if ($LASTEXITCODE -ne 0) {
8
exit $LASTEXITCODE
9
}
10
11
-Write-Host "`nGenerating HTML coverage report..." -ForegroundColor Cyan
12
-reportgenerator -reports:"**/TestResults/**/coverage.cobertura.xml" -targetdir:"../coverage-report" -reporttypes:"Html;HtmlSummary"
+Write-Host "`nGenerating HTML coverage report (excluding WebApplication* projects)..." -ForegroundColor Cyan
+reportgenerator -reports:"**/TestResults/**/coverage.cobertura.xml" -targetdir:"../coverage-report" -reporttypes:"Html;HtmlSummary" -assemblyfilters:"-WebApplication*"
13
14
if ($LASTEXITCODE -eq 0) {
15
Write-Host "`nCoverage report generated successfully!" -ForegroundColor Green
0 commit comments