Hanging

Hanging

I have a build file that will run completely and correctly using NAnt, but it hangs when I use it with NCover.  The following is my NCover.Settings file.  The assemblies will change, but I don't think that matters at this point.  Does anyone have any idea what could cause this or how to detect where the problem is coming from?

<?xml version="1.0" encoding="utf-8"?>
<ProfilerSettings xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">;
  <CommandLineExe>C:\tools\nant-0.85-nightly-2005-12-13\bin\NAnt</CommandLineExe>
  <Assemblies>xyz</Assemblies>
  <Assemblies />
  <LogFile>Coverage.Log</LogFile>
  <CoverageXml>Coverage.Xml</CoverageXml>
 <WorkingDirectory>C:\Projects\CommonFramework.NET\install</WorkingDirectory>
  <VerboseLog>false</VerboseLog>
  <ProfileIIS>false</ProfileIIS>
  <DumpOnErrorNormal>false</DumpOnErrorNormal>
  <DumpOnErrorFull>false</DumpOnErrorFull>
  <NoLog>false</NoLog>
</ProfilerSettings>


Re: nCover throws exception

The problem is NUnit 2.4. See the bug report and suggested workaround at this link:

https://sourceforge.net/tracker/?func=detail&atid=110749&aid=1692940&group_id=10749


Re: nCover throws exception

Thank you very much!