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

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

<!-- NAnt build file for class libraries -->
<!-- Target windows builds libraries _for_ windows -->
<!-- Target linux builds libraries _for_ linux -->

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

	<target name="build">
		<nant basedir="corlib" target="build"/>
		<nant basedir="System" target="build"/>
		<nant basedir="System.Drawing" target="build"/>
		<nant basedir="System.XML" target="build"/>
		<nant basedir="System.Data" target="build"/>
		<nant basedir="System.Web" target="build"/>
		<nant basedir="Microsoft.VisualBasic" target="build"/>
	</target>

	<target name="test">
		<nant basedir="corlib" target="test"/>
		<nant basedir="System" target="test"/>
		<nant basedir="System.XML" target="test"/>
		<nant basedir="System.Data" target="test"/>
		<nant basedir="Microsoft.VisualBasic" target="test"/>
	</target>

	<target name="clean">
		<delete failonerror="false">
			<fileset basedir="lib">
				<includes name="*.dll"/>
			</fileset>
		</delete>
		<nant basedir="corlib" target="clean"/>
		<nant basedir="System" target="clean"/>
		<nant basedir="System.Drawing" target="clean"/>
		<nant basedir="System.XML" target="clean"/>
		<nant basedir="System.Data" target="clean"/>
		<nant basedir="Microsoft.VisualBasic" target="clean"/>
	</target>
</project>