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

test.build « test « Mono.Data « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2fb4e15ce95cad795eac4ac6b6ad4caa8ca5208b (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
<?xml version="1.0" encoding="iso-8859-1"?>

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

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

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