Report not generated...
Report not generated...
I'm somewhat new to CruiseControl/NCoverExplorer/MSBuild, so please excuse me if this problem is too easy.
I have what I think is a working setup now with the NCoverExplorer.Console, though I have not yet successfully had the coverage run and generate a report that i can view in CC.NET. At this point my targets looks like the following:
<Target Name="Coverage">
<NCoverExplorer
ProjectName="xxx"
ReportType="4"
OutputDir="$(CoveragePath)"
XmlReportName="CoverageSummary.xml"
HtmlReportName="CoverageSummary.html"
ShowExcluded="True"
SatisfactoryCoverage="50"
CoverageFiles="@(CoverageFile)"
Exclusions="Assembly=.Test;Namespace=.Test"
/>
<Message Text="Integration Status: $(CCNetIntegrationStatus)" />
</Target>
<Target Name="NCoverExplorerMerge">
<NCoverExplorer
ToolPath="$(@NCoverExplorer)"
MergeFileName="CoverageMerge.xml"
CoverageFiles="@(CoverageFile)"
Exclusions="Assembly=.Test;Namespace=.Test"
/>
</Target>
at the end of my msbuild results, I see the following:
Thanks for any help you can provide.
Peter