Hi,
Try this :
<publishers>
<statistics />
<xmllogger />
</publishers>
and in the dashboard.config file insert
<projectStatisticsPlugin xslFileName="xsl\StatisticsGraphs.xsl" />
in the projectPlugins section
You don't need to insert an entry in xslFileNames (xslFileNames is to parse
build logs, statistics don't depend on ONE build but on the whole set of
builds).
Finally, don't forget to restart IIS.
This should do the trick,
Benjamin Baumann
2010/9/2 Ryan W <[email protected]>
> I just added the statistics publisher to my project in order to show
> them in the dashboard:
>
> <publishers>
> <merge>
> <files>
> <file>E:\ccnetWorking\buildFiles\Artifacts\report.xml</file>
> </files>
> </merge>
> <xmllogger />
> <statistics />
> </publishers>
>
>
> I then added the xsl in the dashboard.config:
>
> <buildReportBuildPlugin>
> <xslFileNames>
> <xslFile>xsl\header.xsl</xslFile>
> <xslFile>xsl\modifications.xsl</xslFile>
> <xslFile>xsl\compile.xsl</xslFile>
> <xslFile>xsl\unittests.xsl</xslFile>
> <xslFile>xsl\compile-msbuild.xsl</xslFile>
> <xslFile>xsl\msbuild.xsl</xslFile>
> <!-- <xslFile>xsl\statistics.xsl</xslFile> -->
> <xslFile>xsl\StatisticsGraphs.xsl</xslFile>
> </xslFileNames>
> </buildReportBuildPlugin>
>
> But, I'm not seeing anything show up in the dashboard. Any further/
> other steps to get them to display on the dashboard?