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: b05d3180001a2bd42aaa9ec73982a62c9ec7df95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?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"/>
			</references>
		</csc>
	</target>
</project>