File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ function RunInspectCode {
23
23
$issueType = $xml.report.IssueTypes.SelectSingleNode (" IssueType[@Id='$ ( $_.TypeId ) ']" )
24
24
$severity = $_.Severity ?? $issueType.Severity
25
25
26
- Write-Output " [$severity ] $ ( $_.File ) :$ ( $_.Line ) $ ( $_.Message ) "
26
+ Write-Output " [$severity ] $ ( $_.File ) :$ ( $_.Line ) $ ( $_.TypeId ) : $ ( $_ . Message) "
27
27
})
28
28
})
29
29
}
Original file line number Diff line number Diff line change 25
25
<tr >
26
26
<th >File</th >
27
27
<th >Line Number</th >
28
+ <th >Type</th >
28
29
<th >Message</th >
29
30
</tr >
30
31
<xsl : for-each select =" key('ISSUETYPES',@Id)" >
35
36
<td >
36
37
<xsl : value-of select =" @Line" />
37
38
</td >
39
+ <td >
40
+ <xsl : value-of select =" @TypeId" />
41
+ </td >
38
42
<td >
39
43
<xsl : value-of select =" @Message" />
40
44
</td >
You can’t perform that action at this time.
0 commit comments