aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.nant/local.include
blob: a54adf235f10f5335abf99c84b8b706cbc2c07ed (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!-- -*- xml -*- -->
<!-- please leve the top comment for us emacs folks -->
<property name="projectdir" value="opensim-0.5.5" />

<target name="distdir">
   <delete dir="${projectdir}" />
   <copy todir="${projectdir}">
       <fileset basedir=".">
          <include name="ThirdPartyLicenses/**" />
          <include name="CONTRIBUTORS.txt" />
          <include name="README" />
          <include name="OpenSim/**/*.cs" />
          <include name="**/*.build" />
          <include name="**/*.csproj" />
          <include name="**/*.csproj.user" />
          <include name="**/*.sln" />
          <include name="bin/*.dll" />
          <include name="bin/*.so" />
          <include name="bin/*.config" />
          <include name="bin/assets/**" />
          <include name="bin/data/**" />
          <include name="bin/OpenSim*xml" />
          <!-- the next is to exclude built libs -->
          <exclude name="bin/OpenSim.*dll" />
          <include name="bin/OpenSim.ini" />
          <include name="bin/defaultstripe.png" />
       </fileset>
   </copy>
   <touch file="${projectdir}/bin/startup_commands.txt" />
</target>

<target name="test" depends="build">
      <nunit2 failonerror="true" verbose="true">
      <formatter type="Plain" />
      <test>
        <assemblies>
          <include name="./bin/OpenSim.Framework.Tests.dll" />
          <include name="./bin/OpenSim.Framework.Servers.Tests.dll" />
          <include name="./bin/OpenSim.Region.ClientStack.LindenUDP.Tests.dll" />
          <include name="./bin/OpenSim.Region.ScriptEngine.Shared.Tests.dll" />
          <include name="./bin/OpenSim.Region.ScriptEngine.Shared.CodeTools.Tests.dll" />
          <include name="./bin/OpenSim.Region.Environment.Tests.dll" />
          <include name="./bin/OpenSim.Data.SQLite.Tests.dll" />
          <include name="./bin/OpenSim.Data.MySQL.Tests.dll" />
        </assemblies>
      </test>
    </nunit2>
</target>

<target name="test-xml" depends="build">
      <nunit2 failonerror="true" verbose="true">
      <formatter type="Xml" usefile="true" extension=".xml" outputdir="./test-results" />
      <test>
        <assemblies>
          <include name="./bin/OpenSim.Framework.Tests.dll" />
          <include name="./bin/OpenSim.Framework.Servers.Tests.dll" />
          <include name="./bin/OpenSim.Region.ClientStack.LindenUDP.Tests.dll" />
          <include name="./bin/OpenSim.Region.ScriptEngine.Shared.Tests.dll" />
          <include name="./bin/OpenSim.Region.ScriptEngine.Shared.CodeTools.Tests.dll" />
          <include name="./bin/OpenSim.Region.Environment.Tests.dll" />
          <include name="./bin/OpenSim.Data.SQLite.Tests.dll" />
          <include name="./bin/OpenSim.Data.MySQL.Tests.dll" />
        </assemblies>
      </test>
    </nunit2>
</target>

<target name="doxygen">
  <exec program="doxygen" workingdir="doc" commandline="doxygen.conf" />
</target>


<target name="dist" depends="distdir">
    <zip zipfile="${projectdir}.zip">
    <fileset basedir=".">
        <include name="${projectdir}/**" />
    </fileset>
    </zip>
    <tar destfile="${projectdir}.tar.gz" compression="GZip">
    <fileset basedir=".">
        <include name="${projectdir}/**" />
    </fileset>
    </tar>
</target>