X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fnant%2Fsrc%2FTasks%2FFailTask.cs;fp=mcs%2Fnant%2Fsrc%2FTasks%2FFailTask.cs;h=2e6b7161fb5b080a331868fb3842dc02aeaacfe7;hb=a88f8fd7de598cfc655f3d4c66106dba3515e399;hp=0000000000000000000000000000000000000000;hpb=f9e754668c359e8b61b36fdb1400e6f0fed94214;p=mono.git diff --git a/mcs/nant/src/Tasks/FailTask.cs b/mcs/nant/src/Tasks/FailTask.cs new file mode 100755 index 00000000000..2e6b7161fb5 --- /dev/null +++ b/mcs/nant/src/Tasks/FailTask.cs @@ -0,0 +1,38 @@ +// NAnt - A .NET build tool +// Copyright (C) 2001 Gerry Shaw +// +// This program is free software; you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation; either version 2 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// Gerry Shaw (gerry_shaw@yahoo.com) + +namespace SourceForge.NAnt { + + using System; + + [TaskName("fail")] + public class FailTask : Task { + + [TaskAttribute("message")] + string _message = null; + + protected override void ExecuteTask() { + string message = _message; + if (message == null) { + message = "No message"; + } + throw new BuildException(message); + } + } +}