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

nunit.framework.extensions.build « framework « NUnitExtensions « nunit24 « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 148a5b6027d9399ef56adaa80ef74cd099d3cfe4 (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
<?xml version="1.0"?>
<project name="NUnitFrameworkExtensions" default="build" basedir=".">

  <target name="build">
    <csc target="library" 
        output="${current.build.dir}/nunit.framework.extensions.dll"
        debug="${build.debug}" define="${build.defines}">
      <sources>
        <include name="AssemblyInfo.cs"/>
        <include name="RepeatAttribute.cs"/>
	<include name="RowTest/RowAttribute.cs"/>
	<include name="RowTest/RowTestAttribute.cs"/>
	<include name="RowTest/SpecialValue.cs"/>
        <include name="../../CommonAssemblyInfo.cs"/>
      </sources>
      <nowarn>
        <warning number="1699" if="${runtime.version=='2.0'}"/>
      </nowarn>
      <references basedir="${current.build.dir}">
        <include name="nunit.framework.dll"/>
      </references>
    </csc>
  </target>

  <target name="package">
    <copy todir="${package.src.dir}/NUnitExtensions/framework">
      <fileset refid="source-files" />
    </copy>
  </target>

</project>