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