2
<project name="NUnit" default="build" basedir=".">
4
<!-- This file is included by each individual project
5
and provides common targets their use. -->
7
<!-- If the project was called from the top level
8
this will already be set -->
9
<property name="project.src.dir" value="../.."
10
unless="${property::exists('project.src.dir')}"/>
12
<!-- Include common properties and targets -->
13
<include buildfile="nunit.build.include"/>
15
<!-- Clean the project output -->
16
<target name="clean" depends="set-build-dir">
17
<property name="current.build.type" value="dll"
18
unless="${property::exists('current.build.type')}"/>
19
<property name="temp.output"
20
value="${current.build.output}.${current.build.type}"/>
22
<delete failonerror="false">
23
<fileset basedir="${current.build.dir}">
24
<include name="${temp.output}"/>
25
<include name="${temp.output}.config"/>
26
<include name="${current.build.output}.pdb"/>