File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ foreach ($file in $files) {
5353 # 3. Normalize the file paths in FilesAnalyzed
5454 $normalizedFiles = @ ()
5555 foreach ($fa in $jsonContent.FilesAnalyzed ) {
56- $normalizedFiles += ($fa.File -Split ' 999.0.0' )[-1 ].Replace(' \' , ' /' ).TrimStart(' /' ).TrimEnd(' /' )
56+ $normalizedFiles += ($fa -Split ' 999.0.0' )[-1 ].Replace(' \' , ' /' ).TrimStart(' /' ).TrimEnd(' /' )
5757 }
5858 $jsonContent.FilesAnalyzed = $normalizedFiles
5959
@@ -236,8 +236,7 @@ LogGroup 'Set step summary' {
236236 Details " Files analyzed [$ ( $codeCoverage.FilesAnalyzedCount ) ]" {
237237 Paragraph {
238238 $codeCoverage.FilesAnalyzed | ForEach-Object {
239- $file = ConvertTo-RelativePath $_
240- Write-Output " - $file "
239+ Write-Output " - $_ "
241240 }
242241 }
243242 }
You can’t perform that action at this time.
0 commit comments