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/class/System.XML/System.XML.build')
-rw-r--r--mcs/class/System.XML/System.XML.build38
1 files changed, 0 insertions, 38 deletions
diff --git a/mcs/class/System.XML/System.XML.build b/mcs/class/System.XML/System.XML.build
deleted file mode 100644
index cee6b79d8b9..00000000000
--- a/mcs/class/System.XML/System.XML.build
+++ /dev/null
@@ -1,38 +0,0 @@
-<?xml version="1.0" encoding="iso-8859-1"?>
-
-<!-- NAnt build file for System.XML.dll -->
-
-<project name="System.XML" default="build">
- <property name="debug" value="false"/>
-
- <target name="build">
- <mkdir dir="../lib"/>
- <csc target="library" output="../lib/System.Xml.dll" debug="${debug}">
- <!-- 'foo' is defined in multiple places; using definition from 'bar' -->
- <arg value="/nowarn:1595"/>
- <!-- Other languages may permit the internal virtual member 'foo' to be overridden -->
- <arg value="/nowarn:0679"/>
- <arg value="/nowarn:0649"/>
- <sources>
- <includes name="**/*.cs"/>
- <excludes name="Test/**"/>
- <!--excludes name="System.Xml.Serialization/**"/-->
- </sources>
- </csc>
- <copy file="../lib/System.Xml.dll" tofile="Test/System.XML.dll"/>
- <nant basedir="Test" target="build"/>
- </target>
-
- <target name="test" depends="build">
- <nant basedir="Test" target="test"/>
- </target>
-
- <target name="clean">
- <nant basedir="Test" target="clean"/>
- <delete file="../lib/System.XML.dll" failonerror="false"/>
- <delete file="../lib/System.Xml.dll" failonerror="false"/>
- <delete file="Test/System.XML.dll" failonerror="false"/>
- <delete file="Test/System.Xml.dll" failonerror="false"/>
- <delete file="../lib/System.XML.pdb" failonerror="false"/>
- </target>
-</project>