我使用OpenCover生成了xml文件。并使用下面的命令生成html报告,
"C:\ReportGenerator_2.1.4.0\bin\ReportGenerator.exe" -reports:"Reports\Test.xml" -targetdir:"Reports"
它在'报告'下生成了多个html报告。夹。我想生成一个' Test.html'报告。我尝试了很多选项,但没有奏效。你能否告诉我应该使用哪个选项来生成一个' Test.html'报告。
答案 0 :(得分:2)
您可以使用报告类型 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。