created an new assembly System.Runtime.Remoting
[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                         <sources>
13                                 <includes name="**/*.cs"/> 
14                                 <excludes name="Test/**"/> 
15                         </sources>
16                         <references>
17                                 <includes name="../lib/corlib.dll"/>
18                                 <includes name="../lib/System.dll"/>
19                         </references>
20                 </csc>
21         </target>
22         <target name="clean">
23                 <delete file="../lib/System.Runtime.Remoting.dll" failonerror="false"/>
24         </target>
25 </project>