我已经使用 OpenCover 生成了 xml 文件。并使用以下命令生成 html 报告,
"C:\ReportGenerator_2.1.4.0\bin\ReportGenerator.exe" -reports:"Reports\Test.xml" -targetdir:"Reports"
它在“报告”文件夹下生成了多个 html 报告。我想生成一份“Test.html”报告。我尝试了很多选择,但没有奏效。您能否告诉我应该使用哪个选项来生成一份“Test.html”报告。
我已经使用 OpenCover 生成了 xml 文件。并使用以下命令生成 html 报告,
"C:\ReportGenerator_2.1.4.0\bin\ReportGenerator.exe" -reports:"Reports\Test.xml" -targetdir:"Reports"
它在“报告”文件夹下生成了多个 html 报告。我想生成一份“Test.html”报告。我尝试了很多选择,但没有奏效。您能否告诉我应该使用哪个选项来生成一份“Test.html”报告。
您可以使用报告类型HtmlSummary。这将创建一个文件报告:
"C:\ReportGenerator_2.1.4.0\bin\ReportGenerator.exe" -reports:"Reports\Test.xml" -targetdir:"Reports" -reporttypes:HtmlSummary
如果您想自定义报告,您可以实现一个呈现报告的插件。请参阅https://github.com/danielpalme/ReportGenerator/wiki/Custom-reports。