System.CodeDom.*: Missing namespace declarations
[mono.git] / mcs / class / System.XML / System.XML.build
1 <?xml version="1.0" encoding="iso-8859-1"?>
2
3 <!-- NAnt build file for System.Xml.dll -->
4
5 <project name="System.Xml" default="build">
6         <property name="debug" value="false"/>
7
8         <target name="build">
9                 <mkdir dir="../lib"/>
10                 <csc target="library" output="../lib/System.Xml.dll" debug="${debug}">
11                         <arg value="/nowarn:1595"/>
12                         <arg value="/unsafe"/>
13                         <sources>
14                                 <includes name="**/*.cs"/> 
15                                 <excludes name="Test/**"/>
16                         </sources>
17                 </csc>
18                 <nant basedir="Test" target="build"/>
19         </target>
20
21         <target name="test">
22                 <nant basedir="Test" target="test"/>
23         </target>
24
25         <target name="clean">
26                 <nant basedir="Test" target="clean"/>
27         </target>
28 </project>