I just started using nant-0.85-20040325 and nantcontrib-0.85-20040317 and I'm noticing that a lot of tasks no longer honour the project's basedir.

For example (where the cwd is C:\src\BWIInstaller):
<project name="Installer" default="CreateInstaller" basedir="..\..">
<target name="CreateInstaller">
<exec program="iscc.exe" commandline="src\BWIInstaller\BWIDesktop.iss" workingdir="${nant.project.basedir}\"/>
...
Becomes:
<project name="Installer" default="CreateInstaller" basedir="..\..">
<target name="CreateInstaller">
<exec program="iscc.exe" commandline="BWIDesktop.iss" workingdir="${nant.project.basedir}\"/>
...


Besides the exec task, I've noticed this behaviour with nantcontrib's vssget task, and the 3rd party nunit2report task. Is this new behaviour intended?


Colin





------------------------------------------------------- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click _______________________________________________ Nant-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/nant-users

Reply via email to