I found this in the nant-developers archive, and it helps:
 

RE: [nant-dev] Behavioral differences between NUnit V2.0.6 and th e <nunit2> task

"...As a workaround, you can qualify the path with: ${nant.project.basedir}.  This does not change the path and is evaluated correctly. ... "
so instead of

     <nunit2>
       <test assemblyname="${build_dir}\HelloWorldTest.dll"
         outfile="results.xml" />
     </nunit2>

use this

     <nunit2>
       <test assemblyname="${nant.project.basedir}\{build_dir}\HelloWorldTest.dll"
    outfile="results.xml" />
     </nunit2>
 
Arjen Stolk

Reply via email to