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

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

<!-- NAnt build file for SystemDrawing.dll -->

<project name="System" default="build">
	<property name="debug" value="false"/>

	<target name="build">
		<csc target="library" output="../lib/System.Drawing.dll" debug="${debug}">
			<arg value="/nowarn:1595"/>
			<arg value="/unsafe"/>
			<sources>
				<includes name="**/*.cs"/> 
				<excludes name="Test/**"/> 
			</sources>
			<references>
				<includes name="../lib/corlib.dll"/>
				<includes name="../lib/System.dll"/>
			</references>
		</csc>
	</target>
	<target name="clean">
		<delete file="../lib/System.Drawing.dll" failonerror="false"/>
	</target>
</project>