Remove doc
[mono.git] / mcs / class / System.Runtime.Remoting / System.Runtime.Remoting.build
1 <?xml version="1.0" encoding="iso-8859-1"?>
2
3 <!-- NAnt build file for System.Runtime.Remoting.dll -->
4
5 <project name="System" default="build">
6         <property name="debug" value="false"/>
7
8         <target name="build">
9                 <csc target="library" output="../lib/System.Runtime.Remoting.dll" debug="${debug}">
10                         <arg value="/nowarn:1595"/>
11                         <arg value="/unsafe"/>
12                         <arg value="/noconfig"/>        <!-- don't reference ms assemblies -->
13                         <arg value="/lib:../lib/"/>
14                         <arg value="/r:corlib.dll"/>
15                         <arg value="/r:System.dll"/>
16                         <sources>
17                                 <includes name="**/*.cs"/> 
18                                 <excludes name="Test/**"/> 
19                         </sources>
20                 </csc>
21         </target>
22         <target name="clean">
23                 <delete file="../lib/System.Runtime.Remoting.dll" failonerror="false"/>
24         </target>
25 </project>