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.Configuration.Install/Test/System.Configuration.Install_test.build')
-rw-r--r--mcs/class/System.Configuration.Install/Test/System.Configuration.Install_test.build33
1 files changed, 0 insertions, 33 deletions
diff --git a/mcs/class/System.Configuration.Install/Test/System.Configuration.Install_test.build b/mcs/class/System.Configuration.Install/Test/System.Configuration.Install_test.build
deleted file mode 100644
index 960594ca0a9..00000000000
--- a/mcs/class/System.Configuration.Install/Test/System.Configuration.Install_test.build
+++ /dev/null
@@ -1,33 +0,0 @@
-<?xml version="1.0" encoding="iso-8859-1"?>
-
-<!-- NAnt build file for System.Configuration.Install_test.dll -->
-<!-- Target build (default) builds tests -->
-<!-- Target test runs tests -->
-
-<project name="System_test" default="build">
- <property name="debug" value="true"/>
-
- <target name="build">
- </target>
-
- <target name="assemblies">
- <csc target="library" output="System.Configuration.Install_test.dll" debug="${debug}">
- <sources>
- <includes name="**/*.cs"/>
- </sources>
-
- <arg value="/noconfig"/>
- <arg value="/r:..\..\..\nunit20\NUnit.Framework.dll"/>
- </csc>
-
- </target>
-
- <target name="test" depends="assemblies">
- <exec program="..\..\..\nunit20\nunit-console.exe" commandline="System.Configuration.Install_test.dll" failonerror="false"/>
- </target>
-
- <target name="clean">
- <delete file="System.Configuration.Install_test.dll" failonerror="false"/>
- <delete file="System.Configuration.Install_test.pdb" failonerror="false"/>
- </target>
-</project>