aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2012-02-29 21:51:46 +0000
committerJustin Clark-Casey (justincc)2012-02-29 22:32:32 +0000
commit94c5e25c3bb74fa267d9af8d4876cb2e2b507d4d (patch)
treeece3965bb3a30e8e93bea220e2f10e1687271533
parentMerge branch '0.7.3-post-fixes' of ssh://opensimulator.org/var/git/opensim in... (diff)
downloadopensim-SC_OLD-0.7.3-release.zip
opensim-SC_OLD-0.7.3-release.tar.gz
opensim-SC_OLD-0.7.3-release.tar.bz2
opensim-SC_OLD-0.7.3-release.tar.xz
Extend distsrc target to cleanup the files generated by running prebuild0.7.3-release
-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" />