Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/nant/src/Tasks/McsTask.cs')
-rw-r--r--mcs/nant/src/Tasks/McsTask.cs47
1 files changed, 0 insertions, 47 deletions
diff --git a/mcs/nant/src/Tasks/McsTask.cs b/mcs/nant/src/Tasks/McsTask.cs
deleted file mode 100644
index 3c5a0ee3f08..00000000000
--- a/mcs/nant/src/Tasks/McsTask.cs
+++ /dev/null
@@ -1,47 +0,0 @@
-// NAnt - A .NET build tool
-// Copyright (C) 2002 Ximian, Inc.
-//
-// 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
-//
-// Martin Baulig (martin@gnome.org)
-
-using System;
-using System.IO;
-
-namespace SourceForge.NAnt
-{
-
- [TaskName("mcs")]
- public class McsTask : CompilerBase
- {
- protected override void WriteOption(TextWriter writer, string name) {
- if (name.Equals("nologo")) {
- return;
- } else {
- writer.WriteLine("--{0}", name);
- }
- }
-
- protected override void WriteOption(TextWriter writer, string name, string arg) {
- if (name.Equals("out")) {
- writer.WriteLine("-o {0}", arg);
- } else if (name.Equals("reference")) {
- writer.WriteLine("-r {0}", arg);
- } else {
- writer.WriteLine("--{0} {1}", name, arg);
- }
- }
- }
-}