aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.nant
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2012-02-29 21:51:46 +0000
committerJustin Clark-Casey (justincc)2012-02-29 21:51:46 +0000
commit1e95b01f13044703c6737a0aee84ae3ac998534c (patch)
treed303db72669923e24469e279a27284af9b092c62 /.nant
parentRevert "Fix authentication for OpenID provider" (diff)
downloadopensim-SC_OLD-1e95b01f13044703c6737a0aee84ae3ac998534c.zip
opensim-SC_OLD-1e95b01f13044703c6737a0aee84ae3ac998534c.tar.gz
opensim-SC_OLD-1e95b01f13044703c6737a0aee84ae3ac998534c.tar.bz2
opensim-SC_OLD-1e95b01f13044703c6737a0aee84ae3ac998534c.tar.xz
Extend distsrc target to cleanup the files generated by running prebuild
Diffstat (limited to '.nant')
-rw-r--r--.nant/local.include18
1 files changed, 18 insertions, 0 deletions
diff --git a/.nant/local.include b/.nant/local.include
index 7d16810..6d3e972 100644
--- a/.nant/local.include
+++ b/.nant/local.include
@@ -8,6 +8,24 @@
8 <copy file="bin/OpenSim.ini.example" tofile="bin/OpenSim.ini"/> 8 <copy file="bin/OpenSim.ini.example" tofile="bin/OpenSim.ini"/>
9 <copy file="bin/config-include/StandaloneCommon.ini.example" tofile="bin/config-include/StandaloneCommon.ini"/> 9 <copy file="bin/config-include/StandaloneCommon.ini.example" tofile="bin/config-include/StandaloneCommon.ini"/>
10 <copy file="bin/config-include/FlotsamCache.ini.example" tofile="bin/config-include/FlotsamCache.ini"/> 10 <copy file="bin/config-include/FlotsamCache.ini.example" tofile="bin/config-include/FlotsamCache.ini"/>
11 <!-- delete files generated by runprebuild.sh which had to be run in order to generate the build file for this target-->
12 <delete>
13 <fileset basedir="OpenSim">
14 <include name="**/*.build"/>
15 <include name="**/*.csproj*"/>
16 <include name="**/*.dll.build"/>
17 <include name="**/*.pidb"/>
18 <exclude name="Tools/OpenSim.32BitLaunch/**"/>
19 <exclude name="Tools/Robust.32BitLaunch/**"/>
20 <exclude name="Tools/LaunchSLClient/**"/>
21 </fileset>
22 </delete>
23 <delete>
24 <fileset>
25 <include name="OpenSim.build"/>
26 <include name="OpenSim.sln"/>
27 </fileset>
28 </delete>
11</target> 29</target>
12 30
13<property name="distbindir" value="distbin" /> 31<property name="distbindir" value="distbin" />