* Stubed System.ComponentModel/LicenseContext.cs
[mono.git] / mcs / class / Mono.Data.SybaseClient / Mono.Data.SybaseClient.build
1 <?xml version="1.0" encoding="iso-8859-1"?>
2
3 <!-- NAnt build file for Mono.Data.SybaseClient.dll -->
4
5 <project name="Mono.Data.SybaseClient" default="build">
6         <property name="debug" value="false"/>
7
8         <target name="build">
9                 <csc target="library" output="../lib/Mono.Data.SybaseClient.dll" debug="${debug}">
10                         <arg value="/nowarn:1595"/>
11                         <arg value="/nowarn:0067"/>
12                         <arg value="/nowarn:0109"/>
13                         <arg value="/nowarn:0169"/>
14                         <arg value="/nowarn:0679"/>
15                         <arg value="/nowarn:0649"/>
16                         <arg value="/unsafe"/>
17                         <arg value="/noconfig"/>
18                         <arg value="/r:System.dll"/>
19                         <arg value="/r:System.Data.dll"/>
20                         <arg value="/r:System.EnterpriseServices.dll"/>
21                         <arg value="/r:System.Xml.dll"/>
22                         <arg value="/r:../lib/Mono.Data.Tds.dll"/>
23                         <sources>
24                                 <includes name="**/*.cs"/>
25                                 <excludes name="Test/**"/>
26                         </sources>
27                         <references>
28                                 <includes name="../lib/corlib.dll"/>
29                                 <includes name="../lib/System.dll"/>
30                                 <includes name="../lib/System.Data.dll"/>
31                                 <includes name="../lib/System.EnterpriseServices.dll"/>
32                                 <includes name="../lib/System.Xml.dll"/>
33                                 <includes name="../lib/Mono.Data.Tds.dll"/>
34                         </references>
35                 </csc>
36                 <copy file="../lib/Mono.Data.SybaseClient.dll" tofile="Test/Mono.Data.SybaseClient.dll"/>
37         </target>
38         <target name="test" depends="build">
39                 <nant basedir="Test" target="test"/>
40         </target>
41         <target name="clean">
42                 <delete file="../lib/Mono.Data.SybaseClient.dll" failonerror="false"/>
43         </target>
44 </project>