relative paths

relative paths

Hi,

I ran into an issue using both ncover (1.5.4.0) and ncoverexplorer (1.3.5.1921) from nant (0.85.2478.0) using relative paths. 

'tools\ncoverexplorer\ncoverexplorer.console.exe' failed to start.
    The system cannot find the file specified

I triple-checked that this program exist in the tools\ncoverexplorer folder, the nant file exist in the root.

Am I overlooking something?

Rob

<property name="ncoverexplorer.dir" value="tools\ncoverexplorer" /><!-- 1.3.5 -->

<property name="coverage.reporttype.ModuleClassSummary" value="4" />

<ncoverexplorer program="${ncoverexplorer.dir}\ncoverexplorer.console.exe"

projectName="MyProj"

reportType="${coverage.reporttype.ModuleClassSummary}"

outputDir="build"

xmlReportName="ncoverexplorer-results.xml"

satisfactoryCoverage="80"

sort="CoveragePercentageDescending" >

<fileset>

<include name="build\ncover-results.xml"/>

</fileset>

<exclusions>

<exclusion type="Assembly" pattern="*.Tests" />

</exclusions>

</ncoverexplorer>