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/library.build')
-rw-r--r--mcs/class/library.build41
1 files changed, 0 insertions, 41 deletions
diff --git a/mcs/class/library.build b/mcs/class/library.build
deleted file mode 100644
index cc3d05dcf85..00000000000
--- a/mcs/class/library.build
+++ /dev/null
@@ -1,41 +0,0 @@
-<?xml version="1.0" encoding="iso-8859-1"?>
-
-<!-- NAnt build file for class libraries -->
-<!-- Target windows builds libraries _for_ windows -->
-<!-- Target linux builds libraries _for_ linux -->
-
-<project name="corlib" default="build">
- <property name="debug" value="false"/>
-
- <target name="build">
- <nant basedir="corlib" target="build"/>
- <nant basedir="System" target="build"/>
- <nant basedir="System.Drawing" target="build"/>
- <nant basedir="System.XML" target="build"/>
- <nant basedir="System.Data" target="build"/>
- <nant basedir="System.Web" target="build"/>
- <nant basedir="Microsoft.VisualBasic" target="build"/>
- </target>
-
- <target name="test">
- <nant basedir="corlib" target="test"/>
- <nant basedir="System" target="test"/>
- <nant basedir="System.XML" target="test"/>
- <nant basedir="System.Data" target="test"/>
- <nant basedir="Microsoft.VisualBasic" target="test"/>
- </target>
-
- <target name="clean">
- <delete failonerror="false">
- <fileset basedir="lib">
- <includes name="*.dll"/>
- </fileset>
- </delete>
- <nant basedir="corlib" target="clean"/>
- <nant basedir="System" target="clean"/>
- <nant basedir="System.Drawing" target="clean"/>
- <nant basedir="System.XML" target="clean"/>
- <nant basedir="System.Data" target="clean"/>
- <nant basedir="Microsoft.VisualBasic" target="clean"/>
- </target>
-</project>