2002-12-21 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
[mono.git] / mcs / class / Cscompmgd / Cscompmgd.build
1 <?xml version="1.0" encoding="iso-8859-1"?>
2
3 <!-- NAnt build file for Cscompmgd.dll -->
4
5 <project name="Cscompmgd" default="build">
6         <property name="debug" value="false"/>
7
8         <target name="build">
9                 <csc target="library" output="../lib/Cscompmgd.dll" debug="${debug}">
10                         <arg value="/nowarn:1595"/>
11                         <arg value="/unsafe"/>
12                         <sources>
13                                 <includes name="**/*.cs"/> 
14                                 <excludes name="Test/**"/> 
15                         </sources>
16
17                         <references>
18                                 <includes name="../lib/corlib.dll"/>
19                                 <includes name="../lib/System.dll"/> 
20                         </references>
21
22                 </csc>
23         </target>
24         <target name="clean">
25                 <delete file="../lib/Cscompmgd.dll" failonerror="false"/>
26         </target>
27 </project>