I\'m trying to integrate OpenCover with CruiseControl.NET. At this point I\'ve modified by build system so it runs my nunit tests under OpenCover. I then generate Xml and Html r
You could use External Links in your ccnet.config after exposing your report via IIS
<externalLinks>
<externalLink name="Code Coverage" url="http://cc.net/coverage" />
</externalLinks>
I had this problem and I solved it with these steps, take into account that I'm using msbuild, so this will only work if you're using msbuild: