|
It seems weird (to me) that file deletes in the same directory are always verbose, even if you don't want them to be, but recursive deletes respect the verbosity requested. Forgive me if the patch below is offensive in some way; CVS, UnxUtils and I are not all friends yet.
--- copy of deletetask.c_ Tue Jun 24 13:16:48 2003 +++ deletetask.cs Thu Sep 04 00:31:03 2003 @@ -93,7 +93,7 @@ string msg = String.Format(CultureInfo.InvariantCulture, "Could not determine path from {0}.", FileName); throw new BuildException(msg, Location, e); } - DeleteFile(path, true); + DeleteFile(path, Verbose);
} else if (DirectoryName != null) { // try to delete specified directory |
