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

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

<!-- NAnt build file for System.Configuration.Install_test.dll -->
<!-- Target build (default) builds tests -->
<!-- Target test runs tests -->

<project name="System_test" default="build">
	<property name="debug" value="true"/>

	<target name="build">
	</target>

	<target name="assemblies">
		<csc target="library" output="System.Configuration.Install_test.dll" debug="${debug}">
			<sources>
				<includes name="**/*.cs"/>
			</sources>

			<arg value="/noconfig"/>
		    	<arg value="/r:..\..\..\nunit20\NUnit.Framework.dll"/>
		</csc>

	</target>

	<target name="test" depends="assemblies">
		<exec program="..\..\..\nunit20\nunit-console.exe" commandline="System.Configuration.Install_test.dll" failonerror="false"/>
	</target>

	<target name="clean">
		<delete file="System.Configuration.Install_test.dll" failonerror="false"/>
		<delete file="System.Configuration.Install_test.pdb" failonerror="false"/>
	</target>
</project>