Skip to content

Instantly share code, notes, and snippets.

@nicksterx
Created February 24, 2020 22:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nicksterx/32c47f492b22546733193ca82735d966 to your computer and use it in GitHub Desktop.
Save nicksterx/32c47f492b22546733193ca82735d966 to your computer and use it in GitHub Desktop.
Convert Code Coverage to Coveragexml
Get-ChildItem -Path .\ -Filter *.coverage -Recurse -File | ForEach-Object {
Write-Host "Processing $($_.FullName)"
"C:\Program Files (x86)\Microsoft Visual Studio 11.0\Team Tools\Dynamic Code Coverage Tools\CodeCoverage.exe" analyze /output:"$($_.FullName)xml" "$($_.FullName)"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment