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/Test/System.XML_test.build')
-rw-r--r--mcs/class/System.XML/Test/System.XML_test.build52
1 files changed, 0 insertions, 52 deletions
diff --git a/mcs/class/System.XML/Test/System.XML_test.build b/mcs/class/System.XML/Test/System.XML_test.build
deleted file mode 100644
index b7b3c68dd16..00000000000
--- a/mcs/class/System.XML/Test/System.XML_test.build
+++ /dev/null
@@ -1,52 +0,0 @@
-<?xml version="1.0" encoding="iso-8859-1"?>
-
-<!-- NAnt build file for System.XML_test.dll -->
-<!-- Target build (default) builds tests -->
-<!-- Target test runs tests -->
-
-<project name="System.XML_test" default="build">
- <property name="debug" value="false"/>
- <property name="nunit_home" value="..\..\..\nunit"/>
-
- <target name="build">
- </target>
-
- <target name="assemblies">
- <csc target="library" output="System.XML_test.dll" debug="${debug}">
- <arg value="/nowarn:1595"/>
- <sources>
- <includes name="**/*.cs"/>
- <excludes name="TheTests.cs"/>
- </sources>
- <references basedir="..\..\..\nunit">
- <includes name="NUnitCore.dll"/>
- </references>
- <arg value="/r:.\System.XML.dll"/>
- </csc>
-
- <csc target="exe" output="RunTests.System.XML.exe" debug="${debug}">
- <sources>
- <includes name="**/*.cs"/>
- <excludes name="**/AllTests.cs"/>
- <excludes name="**/MartinTests.cs"/>
- </sources>
- <references basedir="..\..\..\nunit">
- <includes name="NUnitBase.dll"/>
- </references>
- <arg value="/nowarn:1595"/>
- <arg value="/noconfig"/>
- <arg value="/r:.\System.XML.dll"/>
- </csc>
-
- </target>
-
- <target name="test" depends="assemblies">
- <exec program="..\..\..\nunit\NUnitConsole" commandline="MonoTests.System.Xml.AllTests,System.XML_test.dll" failonerror="false"/>
- </target>
-
- <target name="clean">
- <delete file="System.XML.dll" failonerror="false"/>
- <delete file="System.XML_test.dll" failonerror="false"/>
- <delete file="System.XML_test.pdb" failonerror="false"/>
- </target>
-</project>