NAnt 0.84 release. .Net Framework 1.1.

The delete task incorrectly reports the number of files affected. Note the
"Deleting 0 files." line.

---output--------------------------------------------------
C:\temp\nant-test>echo TEST-FILE > test.tmp

C:\temp\nant-test>dir /b
root.build
test.tmp

C:\temp\nant-test>nant
NAnt version 0.8.4 Copyright (C) 2001-2003 Gerry Shaw
http://nant.sourceforge.net

Buildfile: file:///C:/temp/nant-test/root.build
Target(s) specified: build

build:

   [delete] Deleting file C:\temp\nant-test\test.tmp.
   [delete] Deleting 0 files.

BUILD SUCCEEDED

Total time: 0.2 seconds.


C:\temp\nant-test>dir /b
root.build
---output--------------------------------------------------


---start root.build------------
<?xml version="1.0" ?>
<project name="root" default="build" >

<target name="build" description="Build.">
        <delete file="test.tmp" />
</target>

</project>
---end   root.build------------


Nick Varacalli
http://www.varacalli.com



-------------------------------------------------------
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
_______________________________________________
nant-developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-developers

Reply via email to