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

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

<!-- NAnt build file for Mono.Directory.LDAP.dll -->

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

	<target name="build">
		<csc target="library" output="../lib/Mono.Directory.LDAP.dll" 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="/lib:../lib/"/>
			<arg value="/r:corlib.dll"/>
			
			<sources>
				<includes name="**/*.cs"/> 
				<excludes name="Test/**"/>				
			</sources>
		</csc>
	</target>
	<target name="test" depends="build">
		<nant basedir="Test" target="test"/>
	</target>
	<target name="clean">
		<delete file="../lib/Mono.Directory.LDAP.dll" failonerror="false"/>
	</target>
</project>