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

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

<!-- NAnt build file for Mono.CSharp.Debugger.dll -->

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

	<target name="build">
		<csc target="library" output="../lib/Mono.CSharp.Debugger.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>
	<target name="clean">
		<delete file="../lib/Mono.CSharp.Debugger.dll" failonerror="false"/>
	</target>
</project>