In System.Xml:
[mono.git] / mcs / class / library.build
1 <?xml version="1.0" encoding="iso-8859-1"?>
2
3 <!-- NAnt build file for class libraries -->
4 <!-- Target windows builds libraries _for_ windows -->
5 <!-- Target linux builds libraries _for_ linux -->
6
7 <project name="corlib" default="build">
8         <property name="debug" value="false"/>
9
10         <target name="build">
11                 <nant basedir="corlib" target="build"/>
12                 <nant basedir="System" target="build"/>
13                 <nant basedir="System.Drawing" target="build"/>
14                 <nant basedir="System.XML" target="build"/>
15                 <nant basedir="System.Data" target="build"/>
16                 <nant basedir="System.Web" target="build"/>
17                 <nant basedir="Microsoft.VisualBasic" target="build"/>
18         </target>
19
20         <target name="test">
21                 <nant basedir="corlib" target="test"/>
22                 <nant basedir="System" target="test"/>
23                 <nant basedir="System.XML" target="test"/>
24                 <nant basedir="System.Data" target="test"/>
25                 <nant basedir="Microsoft.VisualBasic" target="test"/>
26         </target>
27
28         <target name="clean">
29                 <delete failonerror="false">
30                         <fileset basedir="lib">
31                                 <includes name="*.dll"/>
32                         </fileset>
33                 </delete>
34                 <nant basedir="corlib" target="clean"/>
35                 <nant basedir="System" target="clean"/>
36                 <nant basedir="System.Drawing" target="clean"/>
37                 <nant basedir="System.XML" target="clean"/>
38                 <nant basedir="System.Data" target="clean"/>
39                 <nant basedir="Microsoft.VisualBasic" target="clean"/>
40         </target>
41 </project>