Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Mono.Data.SybaseClient.build « Mono.Data.SybaseClient « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b5435f230d6e5856577663b79d38e99b2c64dc56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?xml version="1.0" encoding="iso-8859-1"?>

<!-- NAnt build file for Mono.Data.SybaseClient.dll -->

<project name="Mono.Data.SybaseClient" default="build">
	<property name="debug" value="false"/>

	<target name="build">
		<csc target="library" output="../lib/Mono.Data.SybaseClient.dll" debug="${debug}">
			<arg value="/nowarn:1595"/>
			<arg value="/nowarn:0067"/>
			<arg value="/nowarn:0109"/>
			<arg value="/nowarn:0169"/>
			<arg value="/nowarn:0679"/>
			<arg value="/nowarn:0649"/>
			<arg value="/unsafe"/>
			<arg value="/noconfig"/>
			<arg value="/r:System.dll"/>
			<arg value="/r:System.Data.dll"/>
			<arg value="/r:System.EnterpriseServices.dll"/>
			<arg value="/r:System.Xml.dll"/>
			<arg value="/r:../lib/Mono.Data.Tds.dll"/>
			<sources>
				<includes name="**/*.cs"/>
				<excludes name="Test/**"/>
			</sources>
			<references>
				<includes name="../lib/corlib.dll"/>
				<includes name="../lib/System.dll"/>
				<includes name="../lib/System.Data.dll"/>
				<includes name="../lib/System.EnterpriseServices.dll"/>
				<includes name="../lib/System.Xml.dll"/>
				<includes name="../lib/Mono.Data.Tds.dll"/>
			</references>
		</csc>
	</target>
	<target name="test" depends="build">
		<nant basedir="Test" target="test"/>
	</target>
	<target name="clean">
		<delete file="../lib/Mono.Data.SybaseClient.dll" failonerror="false"/>
	</target>
</project>