diff options
author | Sean Dague | 2007-09-17 11:55:09 +0000 |
---|---|---|
committer | Sean Dague | 2007-09-17 11:55:09 +0000 |
commit | b9a76267502721998cd47f31385ac41cd60582c5 (patch) | |
tree | 186e95a492d3b7d9a2a1a83ff5a13b7d3e535c26 | |
parent | the beginnings of a workable dist target (diff) | |
download | opensim-SC_OLD-b9a76267502721998cd47f31385ac41cd60582c5.zip opensim-SC_OLD-b9a76267502721998cd47f31385ac41cd60582c5.tar.gz opensim-SC_OLD-b9a76267502721998cd47f31385ac41cd60582c5.tar.bz2 opensim-SC_OLD-b9a76267502721998cd47f31385ac41cd60582c5.tar.xz |
getting closer to a dist that will run
-rw-r--r-- | .nant/local.include | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/.nant/local.include b/.nant/local.include index d95c729..0ba99e2 100644 --- a/.nant/local.include +++ b/.nant/local.include | |||
@@ -5,13 +5,19 @@ | |||
5 | <copy todir="${projectdir}"> | 5 | <copy todir="${projectdir}"> |
6 | <fileset basedir="."> | 6 | <fileset basedir="."> |
7 | <include name="OpenSim/**/*.cs" /> | 7 | <include name="OpenSim/**/*.cs" /> |
8 | <include name="OpenSim/**/*.build" /> | 8 | <include name="**/*.build" /> |
9 | <include name="OpenSim/**/*.csproj" /> | 9 | <include name="**/*.csproj" /> |
10 | <include name="OpenSim/**/*.sln" /> | 10 | <include name="**/*.csproj.user" /> |
11 | <include name="**/*.sln" /> | ||
11 | <include name="bin/*.dll" /> | 12 | <include name="bin/*.dll" /> |
12 | <include name="bin/*.so" /> | 13 | <include name="bin/*.so" /> |
13 | <include name="bin/*.config" /> | 14 | <include name="bin/*.config" /> |
14 | <exclude name="bin/OpenSim.*" /> | 15 | <include name="bin/assets/**" /> |
16 | <include name="ThirdPartyLicenses/**" /> | ||
17 | <include name="CONTRIBUTORS.txt" /> | ||
18 | <!-- order is important --> | ||
19 | <exclude name="bin/OpenSim.*dll" /> | ||
20 | <include name="bin/OpenSim.ini" /> | ||
15 | </fileset> | 21 | </fileset> |
16 | </copy> | 22 | </copy> |
17 | </target> | 23 | </target> |