I have a an InspectionResults.xml
which gets generated when I run inspectcode.exe
from JetbrainsCommandLine Tool Analysis
. Is there any xslt
file provided by the Jetbrains
to convert this xml to html. I was able to convert DuplicateReport.xml
to html
using the xslt
provided by them. Does Jetbrains provide one for this conversion. If not please help me out.
My xml file is as follows:
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated by JetBrains Inspect Code 9.1 -->
<Report ToolsVersion="102.0">
<Information>
<Solution>Server\Server.sln</Solution>
<InspectionScope>
<Element>Solution</Element>
</InspectionScope>
</Information>
<IssueTypes>
<IssueType Id="ArrangeStaticMemberQualifier" Category="Code Style" Description="Add/remove qualifier for static members" Severity="WARNING" />
<IssueType Id="ArrangeThisQualifier" Category="Code Style" Description="Add/remove 'this.' qualifier" Severity="WARNING" />
<IssueType Id="CSharpErrors" Category="C# Compiler Errors" Description="" Severity="ERROR" />
</IssueTypes>
<Issues>
<Project Name="Common">
<Issue TypeId="RedundantUsingDirective" File="Common\AdapterAuthorizationException.cs" Offset="15-48" Line="2" Message="Using directive is not required by the code and can be safely removed" />
<Issue TypeId="RedundantUsingDirective" File="Common\AdapterAuthorizationException.cs" Offset="50-68" Line="3" Message="Using directive is not required by the code and can be safely removed" />
<Issue TypeId="CSharpErrors" File="Common\AdapterAuthorizationException.cs" Offset="63-67" Line="3" Message="Cannot resolve symbol 'Linq'" />
</Project>
</Issues>
</Report>