tags:

views:

119

answers:

3

we are using NCover from http://www.ncover.com/ For our application we have 6 different solution and we create report for each solution. In NCover explore there is MergeData option which I can use to merge all Coverage.xml.

But I want some functionality from command line which I can use in NANT script, has anybody got any idea how to do that

thanks

+1  A: 

There is a command line tool which you could execute from nant:

http://www.kiwidude.com/blog/2006/10/ncoverexplorer-merging-ncover-reports.html

Shiraz Bhaiji
+1  A: 

What version of NCover are you using? Did you ask a question on our forum?

Joe Feser NCover

joe.feser
the version of ncover we use is 3.1.4.5*
Miral
v3.1.4 is very old, one of our first releases. Please update to v3.3.0 at http://www.ncover.com/download/current
joe.feser
A: 

if you place multiple coverage files on the command line, NCover Reporting should merge them all together, and then you can use the "//s " argument to save the merged result

Stephen Ward