diff options
Diffstat (limited to '')
-rw-r--r-- | ExportBot/ExportBot.build | 134 | ||||
-rw-r--r-- | ExportBot/ExportBot.exe.build | 196 |
2 files changed, 165 insertions, 165 deletions
diff --git a/ExportBot/ExportBot.build b/ExportBot/ExportBot.build index 033a149..87b9d6d 100644 --- a/ExportBot/ExportBot.build +++ b/ExportBot/ExportBot.build | |||
@@ -1,67 +1,67 @@ | |||
1 | <?xml version="1.0" ?> | 1 | <?xml version="1.0" ?> |
2 | <project name="ExportBot" default="build"> | 2 | <project name="ExportBot" default="build"> |
3 | <echo message="Using '${nant.settings.currentframework}' Framework"/> | 3 | <echo message="Using '${nant.settings.currentframework}' Framework"/> |
4 | 4 | ||
5 | <property name="bin.dir" value="bin" /> | 5 | <property name="bin.dir" value="bin" /> |
6 | <property name="obj.dir" value="obj" /> | 6 | <property name="obj.dir" value="obj" /> |
7 | <property name="doc.dir" value="doc" /> | 7 | <property name="doc.dir" value="doc" /> |
8 | <property name="project.main.dir" value="${project::get-base-directory()}" /> | 8 | <property name="project.main.dir" value="${project::get-base-directory()}" /> |
9 | <property name="project.config" value="Release" /> | 9 | |
10 | 10 | <target name="Debug" description=""> | |
11 | <target name="Release" description=""> | 11 | <property name="project.config" value="Debug" /> |
12 | <property name="project.config" value="Release" /> | 12 | <property name="build.debug" value="true" /> |
13 | <property name="build.debug" value="false" /> | 13 | </target> |
14 | </target> | 14 | |
15 | 15 | <property name="project.config" value="Release" /> | |
16 | 16 | ||
17 | <target name="Debug" description=""> | 17 | <target name="Release" description=""> |
18 | <property name="project.config" value="Debug" /> | 18 | <property name="project.config" value="Release" /> |
19 | <property name="build.debug" value="true" /> | 19 | <property name="build.debug" value="false" /> |
20 | </target> | 20 | </target> |
21 | 21 | ||
22 | <target name="net-1.1" description="Sets framework to .NET 1.1"> | 22 | <target name="net-1.1" description="Sets framework to .NET 1.1"> |
23 | <property name="nant.settings.currentframework" value="net-1.1" /> | 23 | <property name="nant.settings.currentframework" value="net-1.1" /> |
24 | </target> | 24 | </target> |
25 | 25 | ||
26 | <target name="net-2.0" description="Sets framework to .NET 2.0"> | 26 | <target name="net-2.0" description="Sets framework to .NET 2.0"> |
27 | <property name="nant.settings.currentframework" value="net-2.0" /> | 27 | <property name="nant.settings.currentframework" value="net-2.0" /> |
28 | </target> | 28 | </target> |
29 | 29 | ||
30 | <target name="mono-2.0" description="Sets framework to mono 2.0"> | 30 | <target name="mono-2.0" description="Sets framework to mono 2.0"> |
31 | <property name="nant.settings.currentframework" value="mono-2.0" /> | 31 | <property name="nant.settings.currentframework" value="mono-2.0" /> |
32 | </target> | 32 | </target> |
33 | 33 | ||
34 | <target name="mono-1.0" description="Sets framework to mono 1.0"> | 34 | <target name="mono-1.0" description="Sets framework to mono 1.0"> |
35 | <property name="nant.settings.currentframework" value="mono-1.0" /> | 35 | <property name="nant.settings.currentframework" value="mono-1.0" /> |
36 | </target> | 36 | </target> |
37 | 37 | ||
38 | <target name="init" description=""> | 38 | <target name="init" description=""> |
39 | <call target="${project.config}" /> | 39 | <call target="${project.config}" /> |
40 | <sysinfo /> | 40 | <sysinfo /> |
41 | <echo message="Platform ${sys.os.platform}" /> | 41 | <echo message="Platform ${sys.os.platform}" /> |
42 | <property name="build.dir" value="${bin.dir}/${project.config}" /> | 42 | <property name="build.dir" value="${bin.dir}/${project.config}" /> |
43 | </target> | 43 | </target> |
44 | 44 | ||
45 | <target name="clean" description=""> | 45 | <target name="clean" description=""> |
46 | <echo message="Deleting all builds from all configurations" /> | 46 | <echo message="Deleting all builds from all configurations" /> |
47 | <delete dir="${bin.dir}" failonerror="false" /> | 47 | <delete dir="${bin.dir}" failonerror="false" /> |
48 | <delete dir="${obj.dir}" failonerror="false" /> | 48 | <delete dir="${obj.dir}" failonerror="false" /> |
49 | <nant buildfile="./ExportBot.exe.build" target="clean" /> | 49 | <nant buildfile="./ExportBot.exe.build" target="clean" /> |
50 | </target> | 50 | </target> |
51 | 51 | ||
52 | <target name="build" depends="init" description=""> | 52 | <target name="build" depends="init" description=""> |
53 | <nant buildfile="./ExportBot.exe.build" target="build" /> | 53 | <nant buildfile="./ExportBot.exe.build" target="build" /> |
54 | </target> | 54 | </target> |
55 | 55 | ||
56 | <target name="build-release" depends="Release, init, build" description="Builds in Release mode" /> | 56 | <target name="build-release" depends="Release, init, build" description="Builds in Release mode" /> |
57 | 57 | ||
58 | <target name="build-debug" depends="Debug, init, build" description="Builds in Debug mode" /> | 58 | <target name="build-debug" depends="Debug, init, build" description="Builds in Debug mode" /> |
59 | 59 | ||
60 | <target name="package" depends="clean, doc" description="Builds all" /> | 60 | <target name="package" depends="clean, doc" description="Builds all" /> |
61 | 61 | ||
62 | <target name="doc" depends="build-release"> | 62 | <target name="doc" depends="build-release"> |
63 | <echo message="Generating all documentation from all builds" /> | 63 | <echo message="Generating all documentation from all builds" /> |
64 | <nant buildfile="./ExportBot.exe.build" target="doc" /> | 64 | <nant buildfile="./ExportBot.exe.build" target="doc" /> |
65 | </target> | 65 | </target> |
66 | 66 | ||
67 | </project> | 67 | </project> |
diff --git a/ExportBot/ExportBot.exe.build b/ExportBot/ExportBot.exe.build index 9181aa4..8f2bc46 100644 --- a/ExportBot/ExportBot.exe.build +++ b/ExportBot/ExportBot.exe.build | |||
@@ -1,98 +1,98 @@ | |||
1 | <?xml version="1.0" ?> | 1 | <?xml version="1.0" ?> |
2 | <project name="ExportBot" default="build"> | 2 | <project name="ExportBot" default="build"> |
3 | <target name="build"> | 3 | <target name="build"> |
4 | <echo message="Build Directory is ${project::get-base-directory()}/${build.dir}" /> | 4 | <echo message="Build Directory is ${project::get-base-directory()}/${build.dir}" /> |
5 | <mkdir dir="${project::get-base-directory()}/${build.dir}" /> | 5 | <mkdir dir="${project::get-base-directory()}/${build.dir}" /> |
6 | <copy todir="${project::get-base-directory()}/${build.dir}"> | 6 | <copy todir="${project::get-base-directory()}/${build.dir}"> |
7 | <fileset basedir="${project::get-base-directory()}"> | 7 | <fileset basedir="${project::get-base-directory()}"> |
8 | </fileset> | 8 | </fileset> |
9 | </copy> | 9 | </copy> |
10 | <csc target="exe" debug="${build.debug}" unsafe="False" define="TRACE" output="${project::get-base-directory()}/${build.dir}/${project::get-name()}.exe"> | 10 | <csc target="exe" debug="${build.debug}" unsafe="False" define="TRACE;DEBUG" output="${project::get-base-directory()}/${build.dir}/${project::get-name()}.exe"> |
11 | <resources prefix="ExportBot" dynamicprefix="true" > | 11 | <resources prefix="ExportBot" dynamicprefix="true" > |
12 | </resources> | 12 | </resources> |
13 | <sources failonempty="true"> | 13 | <sources failonempty="true"> |
14 | <include name="Arguments.cs" /> | 14 | <include name="Arguments.cs" /> |
15 | <include name="ClientManager.cs" /> | 15 | <include name="ClientManager.cs" /> |
16 | <include name="Command.cs" /> | 16 | <include name="Command.cs" /> |
17 | <include name="Parsing.cs" /> | 17 | <include name="Parsing.cs" /> |
18 | <include name="Program.cs" /> | 18 | <include name="Program.cs" /> |
19 | <include name="TestClient.cs" /> | 19 | <include name="TestClient.cs" /> |
20 | <include name="Commands/AppearanceCommand.cs" /> | 20 | <include name="Commands/AppearanceCommand.cs" /> |
21 | <include name="Commands/CloneProfileCommand.cs" /> | 21 | <include name="Commands/CloneProfileCommand.cs" /> |
22 | <include name="Commands/DebugCommand.cs" /> | 22 | <include name="Commands/DebugCommand.cs" /> |
23 | <include name="Commands/DilationCommand.cs" /> | 23 | <include name="Commands/DilationCommand.cs" /> |
24 | <include name="Commands/DumpOutfitCommand.cs" /> | 24 | <include name="Commands/DumpOutfitCommand.cs" /> |
25 | <include name="Commands/ExportCommand.cs" /> | 25 | <include name="Commands/ExportCommand.cs" /> |
26 | <include name="Commands/ExportOutfitCommand.cs" /> | 26 | <include name="Commands/ExportOutfitCommand.cs" /> |
27 | <include name="Commands/ExportParticlesCommand.cs" /> | 27 | <include name="Commands/ExportParticlesCommand.cs" /> |
28 | <include name="Commands/FindSimCommand.cs" /> | 28 | <include name="Commands/FindSimCommand.cs" /> |
29 | <include name="Commands/HelpCommand.cs" /> | 29 | <include name="Commands/HelpCommand.cs" /> |
30 | <include name="Commands/ImportCommand.cs" /> | 30 | <include name="Commands/ImportCommand.cs" /> |
31 | <include name="Commands/ImportOutfitCommand.cs" /> | 31 | <include name="Commands/ImportOutfitCommand.cs" /> |
32 | <include name="Commands/LoadCommand.cs" /> | 32 | <include name="Commands/LoadCommand.cs" /> |
33 | <include name="Commands/LoginCommand.cs" /> | 33 | <include name="Commands/LoginCommand.cs" /> |
34 | <include name="Commands/LogoutCommand.cs" /> | 34 | <include name="Commands/LogoutCommand.cs" /> |
35 | <include name="Commands/MD5Command.cs" /> | 35 | <include name="Commands/MD5Command.cs" /> |
36 | <include name="Commands/PacketLogCommand.cs" /> | 36 | <include name="Commands/PacketLogCommand.cs" /> |
37 | <include name="Commands/ParcelInfoCommand.cs" /> | 37 | <include name="Commands/ParcelInfoCommand.cs" /> |
38 | <include name="Commands/PrimCountCommand.cs" /> | 38 | <include name="Commands/PrimCountCommand.cs" /> |
39 | <include name="Commands/QuitCommand.cs" /> | 39 | <include name="Commands/QuitCommand.cs" /> |
40 | <include name="Commands/RegionInfoCommand.cs" /> | 40 | <include name="Commands/RegionInfoCommand.cs" /> |
41 | <include name="Commands/SetMasterCommand.cs" /> | 41 | <include name="Commands/SetMasterCommand.cs" /> |
42 | <include name="Commands/SetMasterKeyCommand.cs" /> | 42 | <include name="Commands/SetMasterKeyCommand.cs" /> |
43 | <include name="Commands/ShowEffectsCommand.cs" /> | 43 | <include name="Commands/ShowEffectsCommand.cs" /> |
44 | <include name="Commands/StatsCommand.cs" /> | 44 | <include name="Commands/StatsCommand.cs" /> |
45 | <include name="Commands/TouchCommand.cs" /> | 45 | <include name="Commands/TouchCommand.cs" /> |
46 | <include name="Commands/TreeCommand.cs" /> | 46 | <include name="Commands/TreeCommand.cs" /> |
47 | <include name="Commands/UptimeCommand.cs" /> | 47 | <include name="Commands/UptimeCommand.cs" /> |
48 | <include name="Commands/WhoCommand.cs" /> | 48 | <include name="Commands/WhoCommand.cs" /> |
49 | <include name="Commands/Communication/EchoMasterCommand.cs" /> | 49 | <include name="Commands/Communication/EchoMasterCommand.cs" /> |
50 | <include name="Commands/Communication/IMCommand.cs" /> | 50 | <include name="Commands/Communication/IMCommand.cs" /> |
51 | <include name="Commands/Communication/SayCommand.cs" /> | 51 | <include name="Commands/Communication/SayCommand.cs" /> |
52 | <include name="Commands/Communication/ShoutCommand.cs" /> | 52 | <include name="Commands/Communication/ShoutCommand.cs" /> |
53 | <include name="Commands/Communication/WhisperCommand.cs" /> | 53 | <include name="Commands/Communication/WhisperCommand.cs" /> |
54 | <include name="Commands/Inventory/BalanceCommand.cs" /> | 54 | <include name="Commands/Inventory/BalanceCommand.cs" /> |
55 | <include name="Commands/Inventory/DeleteFolderCommand.cs" /> | 55 | <include name="Commands/Inventory/DeleteFolderCommand.cs" /> |
56 | <include name="Commands/Inventory/GiveAllCommand.cs" /> | 56 | <include name="Commands/Inventory/GiveAllCommand.cs" /> |
57 | <include name="Commands/Inventory/InventoryCommand.cs" /> | 57 | <include name="Commands/Inventory/InventoryCommand.cs" /> |
58 | <include name="Commands/Inventory/WearCommand.cs" /> | 58 | <include name="Commands/Inventory/WearCommand.cs" /> |
59 | <include name="Commands/Movement/FollowCommand.cs" /> | 59 | <include name="Commands/Movement/FollowCommand.cs" /> |
60 | <include name="Commands/Movement/GotoCommand.cs" /> | 60 | <include name="Commands/Movement/GotoCommand.cs" /> |
61 | <include name="Commands/Movement/JumpCommand.cs" /> | 61 | <include name="Commands/Movement/JumpCommand.cs" /> |
62 | <include name="Commands/Movement/LocationCommand.cs" /> | 62 | <include name="Commands/Movement/LocationCommand.cs" /> |
63 | <include name="Commands/Movement/MoveToCommand.cs" /> | 63 | <include name="Commands/Movement/MoveToCommand.cs" /> |
64 | <include name="Commands/Movement/SitCommand.cs" /> | 64 | <include name="Commands/Movement/SitCommand.cs" /> |
65 | <include name="Commands/Movement/SitOnCommand.cs" /> | 65 | <include name="Commands/Movement/SitOnCommand.cs" /> |
66 | <include name="Commands/Movement/StandCommand.cs" /> | 66 | <include name="Commands/Movement/StandCommand.cs" /> |
67 | <include name="Properties/AssemblyInfo.cs" /> | 67 | <include name="Properties/AssemblyInfo.cs" /> |
68 | </sources> | 68 | </sources> |
69 | <references basedir="${project::get-base-directory()}"> | 69 | <references basedir="${project::get-base-directory()}"> |
70 | <lib> | 70 | <lib> |
71 | <include name="${project::get-base-directory()}" /> | 71 | <include name="${project::get-base-directory()}" /> |
72 | <include name="${project::get-base-directory()}/${build.dir}" /> | 72 | <include name="${project::get-base-directory()}/${build.dir}" /> |
73 | </lib> | 73 | </lib> |
74 | <include name="System.dll" /> | 74 | <include name="System.dll" /> |
75 | <include name="System.Xml.dll" /> | 75 | <include name="System.Xml.dll" /> |
76 | <include name="../bin/libsecondlife.dll" /> | 76 | <include name="../bin/libsecondlife.dll" /> |
77 | <include name="../bin/openjpegnet.dll" /> | 77 | <include name="../bin/openjpegnet.dll" /> |
78 | <include name="../bin/OpenSim.Framework.dll" /> | 78 | <include name="../bin/OpenSim.Framework.dll" /> |
79 | <include name="../bin/OpenSim.Framework.Console.dll" /> | 79 | <include name="../bin/OpenSim.Framework.Console.dll" /> |
80 | <include name="../bin/OpenSim.Servers.dll" /> | 80 | <include name="../bin/OpenSim.Servers.dll" /> |
81 | </references> | 81 | </references> |
82 | </csc> | 82 | </csc> |
83 | <echo message="Copying from [${project::get-base-directory()}/${build.dir}/] to [${project::get-base-directory()}/../bin/" /> | 83 | <echo message="Copying from [${project::get-base-directory()}/${build.dir}/] to [${project::get-base-directory()}/../bin/" /> |
84 | <mkdir dir="${project::get-base-directory()}/../bin/"/> | 84 | <mkdir dir="${project::get-base-directory()}/../bin/"/> |
85 | <copy todir="${project::get-base-directory()}/../bin/"> | 85 | <copy todir="${project::get-base-directory()}/../bin/"> |
86 | <fileset basedir="${project::get-base-directory()}/${build.dir}/" > | 86 | <fileset basedir="${project::get-base-directory()}/${build.dir}/" > |
87 | <include name="*.dll"/> | 87 | <include name="*.dll"/> |
88 | <include name="*.exe"/> | 88 | <include name="*.exe"/> |
89 | </fileset> | 89 | </fileset> |
90 | </copy> | 90 | </copy> |
91 | </target> | 91 | </target> |
92 | <target name="clean"> | 92 | <target name="clean"> |
93 | <delete dir="${bin.dir}" failonerror="false" /> | 93 | <delete dir="${bin.dir}" failonerror="false" /> |
94 | <delete dir="${obj.dir}" failonerror="false" /> | 94 | <delete dir="${obj.dir}" failonerror="false" /> |
95 | </target> | 95 | </target> |
96 | <target name="doc" description="Creates documentation."> | 96 | <target name="doc" description="Creates documentation."> |
97 | </target> | 97 | </target> |
98 | </project> | 98 | </project> |