~ubuntu-branches/ubuntu/feisty/nant/feisty

« back to all changes in this revision

Viewing changes to tests/NAnt.Win32/NAnt.Win32.build

  • Committer: Bazaar Package Importer
  • Author(s): Dave Beckett
  • Date: 2006-06-12 23:30:36 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060612233036-a1uwh0949z0218ep
Tags: 0.84+0.85-rc4-1
* New upstream release
* Acknowledge NMU (Closes: #372588)
* Standards-Version 3.7.2
* Update to latest CLI policy package split.  Build-Depends-Indep: on
  cli-common-dev, libmono-winforms1.0-cil, libmono-winforms2.0-cil and
  mono-gmcs to get 1.0 and 2.0 packages
* Removed patches no longer needed:
  - 01-AssemblyInfoTask.cs.patch
  - 02-ScriptTask.cs.patch
  - 03-XmlResultFormatter.cs.patch
  - 04-SourceControl.patch
  - 05-ExceptionTest.cs

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
    -->
9
9
    <target name="build"> 
10
10
        <!-- build test assembly -->
11
 
        <csc target="library" define="${current.build.defines}" warnaserror="true" debug="${build.debug}" output="${build.dir}/bin/${nant.project.name}.Tests.dll">
 
11
        <csc target="library" define="${current.build.defines}" warnaserror="true" debug="${build.debug}" output="${build.dir}/bin/${project::get-name()}.Tests.dll">
12
12
            <nowarn>
13
13
                <!-- do not report warnings for missing XML comments -->
14
14
                <warning number="1591" />
28
28
    <target name="test" depends="build">
29
29
        <nunit2>
30
30
            <formatter type="Plain" />
31
 
            <test assemblyname="${build.dir}/bin/${nant.project.name}.Tests.dll" appconfig="${path::combine(nant.location, 'nant.tests.config')}" />
 
31
            <test assemblyname="${build.dir}/bin/${project::get-name()}.Tests.dll" appconfig="${path::combine(nant::get-base-directory(), 'nant.tests.config')}" />
32
32
        </nunit2>
33
33
    </target>
34
34
</project>