* Stubed System.Runtime.Remoting.Channels.Http
[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                         <arg value="/r:System.Runtime.Serialization.Formatters.Soap.dll"/>
17                         <sources>
18                                 <includes name="**/*.cs"/> 
19                                 <excludes name="Test/**"/> 
20                         </sources>
21                 </csc>
22         </target>
23         <target name="clean">
24                 <delete file="../lib/System.Runtime.Remoting.dll" failonerror="false"/>
25         </target>
26 </project>