Have you checked the dashboard.config file? In this file, you can add / remove xsl parsers in the xslfileNames section as follows:
<buildPlugins> <buildReportBuildPlugin> <xslFileNames> <xslFile>xsl\header.xsl</xslFile> <xslFile>xsl\compile.xsl</xslFile> <xslFile>xsl\compile-msbuild.xsl</xslFile> <xslFile>xsl\unittests.xsl</xslFile> <xslFile>xsl\MsTestSummary.xsl</xslFile> <xslFile>xsl\modifications.xsl</xslFile> </xslFileNames> </buildReportBuildPlugin> <...> </buildPlugins>
If you want to receive Nant outputs in your report, you must have the line xsl \ compile.xsl.
You have a similar section in the server / ccnetservice.exe.config file, which is used for emails.
If you change something in webdashboard.config, you will need to restart the whole iis to see the changes.
source share