Index: src/NAnt.Core/ConsoleDriver.cs
===================================================================
RCS file: /cvsroot/nant/nant/src/NAnt.Core/ConsoleDriver.cs,v
retrieving revision 1.52
diff -u -r1.52 ConsoleDriver.cs
--- src/NAnt.Core/ConsoleDriver.cs	21 May 2005 16:44:36 -0000	1.52
+++ src/NAnt.Core/ConsoleDriver.cs	7 Jul 2006 09:50:42 -0000
@@ -213,8 +213,13 @@
             } catch (ApplicationException ex) {
                 // insert empty line
                 Console.Error.WriteLine();
+
+                ConsoleColor previousColor = Console.ForegroundColor;
+                Console.ForegroundColor = ConsoleColor.Red;
                 // output build result
                 Console.Error.WriteLine("BUILD FAILED");
+                Console.ForegroundColor = previousColor;
+
                 // insert empty line
                 Console.Error.WriteLine();
                 // output message of exception
