opensim-development – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 eva 1 <?xml version="1.0" ?>
2 <project name="OpenSim" default="build">
3 <echo message="Using '${nant.settings.currentframework}' Framework"/>
4  
5 <property name="bin.dir" value="bin" />
6 <property name="obj.dir" value="obj" />
7 <property name="doc.dir" value="doc" />
8 <property name="project.main.dir" value="${project::get-base-directory()}" />
9 <property name="project.config" value="Debug" />
10  
11 <target name="Debug" description="Debug|AnyCPU" depends="Debug-AnyCPU">
12 </target>
13  
14 <target name="Debug-AnyCPU" description="Debug|AnyCPU">
15 <property name="project.config" value="Debug" />
16 <property name="build.debug" value="true" />
17 <property name="build.platform" value="AnyCPU" />
18 </target>
19  
20 <target name="Release" description="Release|AnyCPU" depends="Release-AnyCPU">
21 </target>
22  
23 <target name="Release-AnyCPU" description="Release|AnyCPU">
24 <property name="project.config" value="Release" />
25 <property name="build.debug" value="false" />
26 <property name="build.platform" value="AnyCPU" />
27 </target>
28  
29 <target name="net-1.1" description="Sets framework to .NET 1.1">
30 <property name="nant.settings.currentframework" value="net-1.1" />
31 </target>
32  
33 <target name="net-2.0" description="Sets framework to .NET 2.0">
34 <property name="nant.settings.currentframework" value="net-2.0" />
35 </target>
36  
37 <target name="net-3.5" description="Sets framework to .NET 3.5">
38 <property name="nant.settings.currentframework" value="net-3.5" />
39 </target>
40  
41 <target name="mono-1.0" description="Sets framework to mono 1.0">
42 <property name="nant.settings.currentframework" value="mono-1.0" />
43 </target>
44  
45 <target name="mono-2.0" description="Sets framework to mono 2.0">
46 <property name="nant.settings.currentframework" value="mono-2.0" />
47 </target>
48  
49 <target name="mono-3.5" description="Sets framework to mono 3.5">
50 <property name="nant.settings.currentframework" value="mono-3.5" />
51 </target>
52  
53 <target name="init" description="">
54 <call target="${project.config}" />
55 <property name="sys.os.platform"
56 value="${platform::get-name()}"
57 />
58 <echo message="Platform ${sys.os.platform}" />
59 <property name="build.dir" value="${bin.dir}/${project.config}" />
60 </target>
61  
62  
63 <target name="clean" description="">
64 <echo message="Deleting all builds from all configurations" />
65 <delete failonerror="false">
66 <fileset basedir="${bin.dir}">
67 <include name="OpenSim*.dll"/>
68 <include name="OpenSim*.dll.mdb"/>
69 <include name="OpenSim*.exe"/>
70 <include name="OpenSim*.exe.mdb"/>
71 <include name="ScriptEngines/*"/>
72 <include name="Physics/*.dll"/>
73 <include name="Physics/*.dll.mdb"/>
74 <exclude name="OpenSim.32BitLaunch.exe"/>
75 <exclude name="ScriptEngines/Default.lsl"/>
76 </fileset>
77 </delete>
78 <delete dir="${obj.dir}" failonerror="false" />
79 <nant buildfile="OpenSim/Region/Application/OpenSim.exe.build" target="clean" />
80 <nant buildfile="OpenSim/Addons/Groups/OpenSim.Addons.Groups.dll.build" target="clean" />
81 <nant buildfile="OpenSim/Addons/OfflineIM/OpenSim.Addons.OfflineIM.dll.build" target="clean" />
82 <nant buildfile="OpenSim/ApplicationPlugins/LoadRegions/OpenSim.ApplicationPlugins.LoadRegions.dll.build" target="clean" />
83 <nant buildfile="OpenSim/ApplicationPlugins/RegionModulesController/OpenSim.ApplicationPlugins.RegionModulesController.dll.build" target="clean" />
84 <nant buildfile="OpenSim/ApplicationPlugins/RemoteController/OpenSim.ApplicationPlugins.RemoteController.dll.build" target="clean" />
85 <nant buildfile="OpenSim/Capabilities/OpenSim.Capabilities.dll.build" target="clean" />
86 <nant buildfile="OpenSim/Capabilities/Handlers/OpenSim.Capabilities.Handlers.dll.build" target="clean" />
87 <nant buildfile="OpenSim/Capabilities/Handlers/OpenSim.Capabilities.Handlers.Tests.dll.build" target="clean" />
88 <nant buildfile="OpenSim/ConsoleClient/OpenSim.ConsoleClient.exe.build" target="clean" />
89 <nant buildfile="OpenSim/Data/OpenSim.Data.dll.build" target="clean" />
90 <nant buildfile="OpenSim/Data/MSSQL/OpenSim.Data.MSSQL.dll.build" target="clean" />
91 <nant buildfile="OpenSim/Data/MySQL/OpenSim.Data.MySQL.dll.build" target="clean" />
92 <nant buildfile="OpenSim/Data/Null/OpenSim.Data.Null.dll.build" target="clean" />
93 <nant buildfile="OpenSim/Data/PGSQL/OpenSim.Data.PGSQL.dll.build" target="clean" />
94 <nant buildfile="OpenSim/Data/SQLite/OpenSim.Data.SQLite.dll.build" target="clean" />
95 <nant buildfile="OpenSim/Data/Tests/OpenSim.Data.Tests.dll.build" target="clean" />
96 <nant buildfile="OpenSim/Framework/OpenSim.Framework.dll.build" target="clean" />
97 <nant buildfile="OpenSim/Framework/AssetLoader/Filesystem/OpenSim.Framework.AssetLoader.Filesystem.dll.build" target="clean" />
98 <nant buildfile="OpenSim/Framework/Communications/OpenSim.Framework.Communications.dll.build" target="clean" />
99 <nant buildfile="OpenSim/Framework/Configuration/HTTP/OpenSim.Framework.Configuration.HTTP.dll.build" target="clean" />
100 <nant buildfile="OpenSim/Framework/Configuration/XML/OpenSim.Framework.Configuration.XML.dll.build" target="clean" />
101 <nant buildfile="OpenSim/Framework/Console/OpenSim.Framework.Console.dll.build" target="clean" />
102 <nant buildfile="OpenSim/Framework/Monitoring/OpenSim.Framework.Monitoring.dll.build" target="clean" />
103 <nant buildfile="OpenSim/Framework/RegionLoader/Filesystem/OpenSim.Framework.RegionLoader.Filesystem.dll.build" target="clean" />
104 <nant buildfile="OpenSim/Framework/RegionLoader/Web/OpenSim.Framework.RegionLoader.Web.dll.build" target="clean" />
105 <nant buildfile="OpenSim/Framework/Serialization/OpenSim.Framework.Serialization.dll.build" target="clean" />
106 <nant buildfile="OpenSim/Framework/Serialization/Tests/OpenSim.Framework.Serialization.Tests.dll.build" target="clean" />
107 <nant buildfile="OpenSim/Framework/Servers/OpenSim.Framework.Servers.dll.build" target="clean" />
108 <nant buildfile="OpenSim/Framework/Servers/HttpServer/OpenSim.Framework.Servers.HttpServer.dll.build" target="clean" />
109 <nant buildfile="OpenSim/Framework/Servers/Tests/OpenSim.Framework.Servers.Tests.dll.build" target="clean" />
110 <nant buildfile="OpenSim/Framework/Tests/OpenSim.Framework.Tests.dll.build" target="clean" />
111 <nant buildfile="OpenSim/Region/ClientStack/OpenSim.Region.ClientStack.dll.build" target="clean" />
112 <nant buildfile="OpenSim/Region/ClientStack/Linden/Caps/OpenSim.Region.ClientStack.LindenCaps.dll.build" target="clean" />
113 <nant buildfile="OpenSim/Region/ClientStack/Linden/Caps/OpenSim.Region.ClientStack.LindenCaps.Tests.dll.build" target="clean" />
114 <nant buildfile="OpenSim/Region/ClientStack/Linden/UDP/OpenSim.Region.ClientStack.LindenUDP.dll.build" target="clean" />
115 <nant buildfile="OpenSim/Region/ClientStack/Linden/UDP/Tests/OpenSim.Region.ClientStack.LindenUDP.Tests.dll.build" target="clean" />
116 <nant buildfile="OpenSim/Region/CoreModules/OpenSim.Region.CoreModules.dll.build" target="clean" />
117 <nant buildfile="OpenSim/Region/CoreModules/OpenSim.Region.CoreModules.Tests.dll.build" target="clean" />
118 <nant buildfile="OpenSim/Region/DataSnapshot/OpenSim.Region.DataSnapshot.dll.build" target="clean" />
119 <nant buildfile="OpenSim/Region/Framework/OpenSim.Region.Framework.dll.build" target="clean" />
120 <nant buildfile="OpenSim/Region/Framework/OpenSim.Region.Framework.Tests.dll.build" target="clean" />
121 <nant buildfile="OpenSim/Region/OptionalModules/OpenSim.Region.OptionalModules.dll.build" target="clean" />
122 <nant buildfile="OpenSim/Region/OptionalModules/OpenSim.Region.OptionalModules.Tests.dll.build" target="clean" />
123 <nant buildfile="OpenSim/Region/Physics/BasicPhysicsPlugin/OpenSim.Region.Physics.BasicPhysicsPlugin.dll.build" target="clean" />
124 <nant buildfile="OpenSim/Region/Physics/BulletSPlugin/OpenSim.Region.Physics.BulletSPlugin.dll.build" target="clean" />
125 <nant buildfile="OpenSim/Region/Physics/BulletSPlugin/Tests/OpenSim.Region.Physics.BulletSPlugin.Tests.dll.build" target="clean" />
126 <nant buildfile="OpenSim/Region/Physics/ConvexDecompositionDotNet/OpenSim.Region.Physics.ConvexDecompositionDotNet.dll.build" target="clean" />
127 <nant buildfile="OpenSim/Region/Physics/Manager/OpenSim.Region.Physics.Manager.dll.build" target="clean" />
128 <nant buildfile="OpenSim/Region/Physics/Meshing/OpenSim.Region.Physics.Meshing.dll.build" target="clean" />
129 <nant buildfile="OpenSim/Region/Physics/OdePlugin/OpenSim.Region.Physics.OdePlugin.dll.build" target="clean" />
130 <nant buildfile="OpenSim/Region/Physics/OdePlugin/Tests/OpenSim.Region.Physics.OdePlugin.Tests.dll.build" target="clean" />
131 <nant buildfile="OpenSim/Region/Physics/POSPlugin/OpenSim.Region.Physics.POSPlugin.dll.build" target="clean" />
132 <nant buildfile="OpenSim/Region/RegionCombinerModule/OpenSim.Region.RegionCombinerModule.dll.build" target="clean" />
133 <nant buildfile="OpenSim/Region/ScriptEngine/Shared/OpenSim.Region.ScriptEngine.Shared.dll.build" target="clean" />
134 <nant buildfile="OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OpenSim.Region.ScriptEngine.Shared.Api.dll.build" target="clean" />
135 <nant buildfile="OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OpenSim.Region.ScriptEngine.Shared.Api.Runtime.dll.build" target="clean" />
136 <nant buildfile="OpenSim/Region/ScriptEngine/Shared/CodeTools/OpenSim.Region.ScriptEngine.Shared.CodeTools.dll.build" target="clean" />
137 <nant buildfile="OpenSim/Region/ScriptEngine/Shared/Instance/OpenSim.Region.ScriptEngine.Shared.Instance.dll.build" target="clean" />
138 <nant buildfile="OpenSim/Region/ScriptEngine/Shared/Api/Runtime/YieldProlog/OpenSim.Region.ScriptEngine.Shared.YieldProlog.dll.build" target="clean" />
139 <nant buildfile="OpenSim/Region/ScriptEngine/OpenSim.Region.ScriptEngine.Tests.dll.build" target="clean" />
140 <nant buildfile="OpenSim/Region/ScriptEngine/XEngine/OpenSim.Region.ScriptEngine.XEngine.dll.build" target="clean" />
141 <nant buildfile="OpenSim/Region/ScriptEngine/XEngine/Api/Runtime/OpenSim.Region.ScriptEngine.XEngine.Api.Runtime.dll.build" target="clean" />
142 <nant buildfile="OpenSim/Region/UserStatistics/OpenSim.Region.UserStatistics.dll.build" target="clean" />
143 <nant buildfile="OpenSim/Server/Base/OpenSim.Server.Base.dll.build" target="clean" />
144 <nant buildfile="OpenSim/Server/Handlers/OpenSim.Server.Handlers.dll.build" target="clean" />
145 <nant buildfile="OpenSim/Server/Handlers/OpenSim.Server.Handlers.Tests.dll.build" target="clean" />
146 <nant buildfile="OpenSim/Services/AssetService/OpenSim.Services.AssetService.dll.build" target="clean" />
147 <nant buildfile="OpenSim/Services/AuthenticationService/OpenSim.Services.AuthenticationService.dll.build" target="clean" />
148 <nant buildfile="OpenSim/Services/AuthorizationService/OpenSim.Services.AuthorizationService.dll.build" target="clean" />
149 <nant buildfile="OpenSim/Services/AvatarService/OpenSim.Services.AvatarService.dll.build" target="clean" />
150 <nant buildfile="OpenSim/Services/Base/OpenSim.Services.Base.dll.build" target="clean" />
151 <nant buildfile="OpenSim/Services/Connectors/OpenSim.Services.Connectors.dll.build" target="clean" />
152 <nant buildfile="OpenSim/Services/FreeswitchService/OpenSim.Services.FreeswitchService.dll.build" target="clean" />
153 <nant buildfile="OpenSim/Services/Friends/OpenSim.Services.FriendsService.dll.build" target="clean" />
154 <nant buildfile="OpenSim/Services/GridService/OpenSim.Services.GridService.dll.build" target="clean" />
155 <nant buildfile="OpenSim/Services/HypergridService/OpenSim.Services.HypergridService.dll.build" target="clean" />
156 <nant buildfile="OpenSim/Services/Interfaces/OpenSim.Services.Interfaces.dll.build" target="clean" />
157 <nant buildfile="OpenSim/Services/InventoryService/OpenSim.Services.InventoryService.dll.build" target="clean" />
158 <nant buildfile="OpenSim/Services/InventoryService/Tests/OpenSim.Services.InventoryService.Tests.dll.build" target="clean" />
159 <nant buildfile="OpenSim/Services/LLLoginService/OpenSim.Services.LLLoginService.dll.build" target="clean" />
160 <nant buildfile="OpenSim/Services/MapImageService/OpenSim.Services.MapImageService.dll.build" target="clean" />
161 <nant buildfile="OpenSim/Services/PresenceService/OpenSim.Services.PresenceService.dll.build" target="clean" />
162 <nant buildfile="OpenSim/Services/UserAccountService/OpenSim.Services.UserAccountService.dll.build" target="clean" />
163 <nant buildfile="OpenSim/Services/UserProfilesService/OpenSim.Services.UserProfilesService.dll.build" target="clean" />
164 <nant buildfile="OpenSim/Tests/OpenSim.Tests.dll.build" target="clean" />
165 <nant buildfile="OpenSim/Tests/Clients/Assets/OpenSim.Tests.Clients.AssetClient.exe.build" target="clean" />
166 <nant buildfile="OpenSim/Tests/Clients/Grid/OpenSim.Tests.Clients.GridClient.exe.build" target="clean" />
167 <nant buildfile="OpenSim/Tests/Clients/InstantMessage/OpenSim.Tests.Clients.InstantantMessage.exe.build" target="clean" />
168 <nant buildfile="OpenSim/Tests/Clients/Presence/OpenSim.Tests.Clients.PresenceClient.exe.build" target="clean" />
169 <nant buildfile="OpenSim/Tests/Clients/UserAccounts/OpenSim.Tests.Clients.UserAccountClient.exe.build" target="clean" />
170 <nant buildfile="OpenSim/Tests/Common/OpenSim.Tests.Common.dll.build" target="clean" />
171 <nant buildfile="OpenSim/Tests/Performance/OpenSim.Tests.Performance.dll.build" target="clean" />
172 <nant buildfile="OpenSim/Tests/Stress/OpenSim.Tests.Stress.dll.build" target="clean" />
173 <nant buildfile="OpenSim/Tools/Configger/OpenSim.Tools.Configger.exe.build" target="clean" />
174 <nant buildfile="OpenSim/Tools/Compiler/OpenSim.Tools.lslc.exe.build" target="clean" />
175 <nant buildfile="OpenSim/Tools/pCampBot/pCampBot.exe.build" target="clean" />
176 <nant buildfile="OpenSim/Server/Robust.exe.build" target="clean" />
177 <nant buildfile="ThirdParty/SmartThreadPool/SmartThreadPool.dll.build" target="clean" />
178 </target>
179  
180 <target name="build" depends="init" description="">
181 <nant buildfile="ThirdParty/SmartThreadPool/SmartThreadPool.dll.build" target="build" />
182 <nant buildfile="OpenSim/Framework/OpenSim.Framework.dll.build" target="build" />
183 <nant buildfile="OpenSim/Services/Interfaces/OpenSim.Services.Interfaces.dll.build" target="build" />
184 <nant buildfile="OpenSim/Framework/Monitoring/OpenSim.Framework.Monitoring.dll.build" target="build" />
185 <nant buildfile="OpenSim/Framework/Servers/HttpServer/OpenSim.Framework.Servers.HttpServer.dll.build" target="build" />
186 <nant buildfile="OpenSim/Framework/Console/OpenSim.Framework.Console.dll.build" target="build" />
187 <nant buildfile="OpenSim/Framework/Serialization/OpenSim.Framework.Serialization.dll.build" target="build" />
188 <nant buildfile="OpenSim/Data/OpenSim.Data.dll.build" target="build" />
189 <nant buildfile="OpenSim/Framework/Configuration/XML/OpenSim.Framework.Configuration.XML.dll.build" target="build" />
190 <nant buildfile="OpenSim/Framework/Configuration/HTTP/OpenSim.Framework.Configuration.HTTP.dll.build" target="build" />
191 <nant buildfile="OpenSim/Framework/AssetLoader/Filesystem/OpenSim.Framework.AssetLoader.Filesystem.dll.build" target="build" />
192 <nant buildfile="OpenSim/Framework/RegionLoader/Web/OpenSim.Framework.RegionLoader.Web.dll.build" target="build" />
193 <nant buildfile="OpenSim/Framework/RegionLoader/Filesystem/OpenSim.Framework.RegionLoader.Filesystem.dll.build" target="build" />
194 <nant buildfile="OpenSim/Framework/Servers/OpenSim.Framework.Servers.dll.build" target="build" />
195 <nant buildfile="OpenSim/Region/Physics/Manager/OpenSim.Region.Physics.Manager.dll.build" target="build" />
196 <nant buildfile="OpenSim/Region/Physics/BasicPhysicsPlugin/OpenSim.Region.Physics.BasicPhysicsPlugin.dll.build" target="build" />
197 <nant buildfile="OpenSim/Region/Physics/POSPlugin/OpenSim.Region.Physics.POSPlugin.dll.build" target="build" />
198 <nant buildfile="OpenSim/Region/Physics/OdePlugin/OpenSim.Region.Physics.OdePlugin.dll.build" target="build" />
199 <nant buildfile="OpenSim/Region/Physics/Meshing/OpenSim.Region.Physics.Meshing.dll.build" target="build" />
200 <nant buildfile="OpenSim/Capabilities/OpenSim.Capabilities.dll.build" target="build" />
201 <nant buildfile="OpenSim/Framework/Communications/OpenSim.Framework.Communications.dll.build" target="build" />
202 <nant buildfile="OpenSim/Region/Framework/OpenSim.Region.Framework.dll.build" target="build" />
203 <nant buildfile="OpenSim/Server/Base/OpenSim.Server.Base.dll.build" target="build" />
204 <nant buildfile="OpenSim/Services/Base/OpenSim.Services.Base.dll.build" target="build" />
205 <nant buildfile="OpenSim/Services/UserAccountService/OpenSim.Services.UserAccountService.dll.build" target="build" />
206 <nant buildfile="OpenSim/Services/Friends/OpenSim.Services.FriendsService.dll.build" target="build" />
207 <nant buildfile="OpenSim/Services/Connectors/OpenSim.Services.Connectors.dll.build" target="build" />
208 <nant buildfile="OpenSim/Services/AssetService/OpenSim.Services.AssetService.dll.build" target="build" />
209 <nant buildfile="OpenSim/Services/AuthorizationService/OpenSim.Services.AuthorizationService.dll.build" target="build" />
210 <nant buildfile="OpenSim/Services/FreeswitchService/OpenSim.Services.FreeswitchService.dll.build" target="build" />
211 <nant buildfile="OpenSim/Services/AuthenticationService/OpenSim.Services.AuthenticationService.dll.build" target="build" />
212 <nant buildfile="OpenSim/Services/GridService/OpenSim.Services.GridService.dll.build" target="build" />
213 <nant buildfile="OpenSim/Services/PresenceService/OpenSim.Services.PresenceService.dll.build" target="build" />
214 <nant buildfile="OpenSim/Services/AvatarService/OpenSim.Services.AvatarService.dll.build" target="build" />
215 <nant buildfile="OpenSim/Services/InventoryService/OpenSim.Services.InventoryService.dll.build" target="build" />
216 <nant buildfile="OpenSim/Services/LLLoginService/OpenSim.Services.LLLoginService.dll.build" target="build" />
217 <nant buildfile="OpenSim/Services/HypergridService/OpenSim.Services.HypergridService.dll.build" target="build" />
218 <nant buildfile="OpenSim/Services/MapImageService/OpenSim.Services.MapImageService.dll.build" target="build" />
219 <nant buildfile="OpenSim/Services/UserProfilesService/OpenSim.Services.UserProfilesService.dll.build" target="build" />
220 <nant buildfile="OpenSim/Server/Handlers/OpenSim.Server.Handlers.dll.build" target="build" />
221 <nant buildfile="OpenSim/Capabilities/Handlers/OpenSim.Capabilities.Handlers.dll.build" target="build" />
222 <nant buildfile="OpenSim/Server/Robust.exe.build" target="build" />
223 <nant buildfile="OpenSim/ConsoleClient/OpenSim.ConsoleClient.exe.build" target="build" />
224 <nant buildfile="OpenSim/Region/ClientStack/OpenSim.Region.ClientStack.dll.build" target="build" />
225 <nant buildfile="OpenSim/Region/ClientStack/Linden/UDP/OpenSim.Region.ClientStack.LindenUDP.dll.build" target="build" />
226 <nant buildfile="OpenSim/Region/ClientStack/Linden/Caps/OpenSim.Region.ClientStack.LindenCaps.dll.build" target="build" />
227 <nant buildfile="OpenSim/Region/CoreModules/OpenSim.Region.CoreModules.dll.build" target="build" />
228 <nant buildfile="OpenSim/Region/RegionCombinerModule/OpenSim.Region.RegionCombinerModule.dll.build" target="build" />
229 <nant buildfile="OpenSim/Region/OptionalModules/OpenSim.Region.OptionalModules.dll.build" target="build" />
230 <nant buildfile="OpenSim/Data/Null/OpenSim.Data.Null.dll.build" target="build" />
231 <nant buildfile="OpenSim/Region/Physics/ConvexDecompositionDotNet/OpenSim.Region.Physics.ConvexDecompositionDotNet.dll.build" target="build" />
232 <nant buildfile="OpenSim/Region/Physics/BulletSPlugin/OpenSim.Region.Physics.BulletSPlugin.dll.build" target="build" />
233 <nant buildfile="OpenSim/Region/Application/OpenSim.exe.build" target="build" />
234 <nant buildfile="OpenSim/ApplicationPlugins/LoadRegions/OpenSim.ApplicationPlugins.LoadRegions.dll.build" target="build" />
235 <nant buildfile="OpenSim/ApplicationPlugins/RegionModulesController/OpenSim.ApplicationPlugins.RegionModulesController.dll.build" target="build" />
236 <nant buildfile="OpenSim/ApplicationPlugins/RemoteController/OpenSim.ApplicationPlugins.RemoteController.dll.build" target="build" />
237 <nant buildfile="OpenSim/Region/DataSnapshot/OpenSim.Region.DataSnapshot.dll.build" target="build" />
238 <nant buildfile="OpenSim/Data/MySQL/OpenSim.Data.MySQL.dll.build" target="build" />
239 <nant buildfile="OpenSim/Data/MSSQL/OpenSim.Data.MSSQL.dll.build" target="build" />
240 <nant buildfile="OpenSim/Data/PGSQL/OpenSim.Data.PGSQL.dll.build" target="build" />
241 <nant buildfile="OpenSim/Data/SQLite/OpenSim.Data.SQLite.dll.build" target="build" />
242 <nant buildfile="OpenSim/Region/ScriptEngine/Shared/OpenSim.Region.ScriptEngine.Shared.dll.build" target="build" />
243 <nant buildfile="OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OpenSim.Region.ScriptEngine.Shared.Api.Runtime.dll.build" target="build" />
244 <nant buildfile="OpenSim/Region/ScriptEngine/Shared/Api/Runtime/YieldProlog/OpenSim.Region.ScriptEngine.Shared.YieldProlog.dll.build" target="build" />
245 <nant buildfile="OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OpenSim.Region.ScriptEngine.Shared.Api.dll.build" target="build" />
246 <nant buildfile="OpenSim/Region/ScriptEngine/Shared/CodeTools/OpenSim.Region.ScriptEngine.Shared.CodeTools.dll.build" target="build" />
247 <nant buildfile="OpenSim/Region/ScriptEngine/Shared/Instance/OpenSim.Region.ScriptEngine.Shared.Instance.dll.build" target="build" />
248 <nant buildfile="OpenSim/Region/ScriptEngine/XEngine/Api/Runtime/OpenSim.Region.ScriptEngine.XEngine.Api.Runtime.dll.build" target="build" />
249 <nant buildfile="OpenSim/Region/ScriptEngine/XEngine/OpenSim.Region.ScriptEngine.XEngine.dll.build" target="build" />
250 <nant buildfile="OpenSim/Region/UserStatistics/OpenSim.Region.UserStatistics.dll.build" target="build" />
251 <nant buildfile="OpenSim/Addons/OfflineIM/OpenSim.Addons.OfflineIM.dll.build" target="build" />
252 <nant buildfile="OpenSim/Addons/Groups/OpenSim.Addons.Groups.dll.build" target="build" />
253 <nant buildfile="OpenSim/Tools/pCampBot/pCampBot.exe.build" target="build" />
254 <nant buildfile="OpenSim/Tools/Compiler/OpenSim.Tools.lslc.exe.build" target="build" />
255 <nant buildfile="OpenSim/Tools/Configger/OpenSim.Tools.Configger.exe.build" target="build" />
256 <nant buildfile="OpenSim/Tests/Clients/Assets/OpenSim.Tests.Clients.AssetClient.exe.build" target="build" />
257 <nant buildfile="OpenSim/Tests/Clients/Grid/OpenSim.Tests.Clients.GridClient.exe.build" target="build" />
258 <nant buildfile="OpenSim/Tests/Clients/Presence/OpenSim.Tests.Clients.PresenceClient.exe.build" target="build" />
259 <nant buildfile="OpenSim/Tests/Clients/UserAccounts/OpenSim.Tests.Clients.UserAccountClient.exe.build" target="build" />
260 <nant buildfile="OpenSim/Tests/Clients/InstantMessage/OpenSim.Tests.Clients.InstantantMessage.exe.build" target="build" />
261 <nant buildfile="OpenSim/Tests/Common/OpenSim.Tests.Common.dll.build" target="build" />
262 <nant buildfile="OpenSim/Tests/OpenSim.Tests.dll.build" target="build" />
263 <nant buildfile="OpenSim/Services/InventoryService/Tests/OpenSim.Services.InventoryService.Tests.dll.build" target="build" />
264 <nant buildfile="OpenSim/Capabilities/Handlers/OpenSim.Capabilities.Handlers.Tests.dll.build" target="build" />
265 <nant buildfile="OpenSim/Data/Tests/OpenSim.Data.Tests.dll.build" target="build" />
266 <nant buildfile="OpenSim/Framework/Tests/OpenSim.Framework.Tests.dll.build" target="build" />
267 <nant buildfile="OpenSim/Framework/Serialization/Tests/OpenSim.Framework.Serialization.Tests.dll.build" target="build" />
268 <nant buildfile="OpenSim/Framework/Servers/Tests/OpenSim.Framework.Servers.Tests.dll.build" target="build" />
269 <nant buildfile="OpenSim/Region/CoreModules/OpenSim.Region.CoreModules.Tests.dll.build" target="build" />
270 <nant buildfile="OpenSim/Region/OptionalModules/OpenSim.Region.OptionalModules.Tests.dll.build" target="build" />
271 <nant buildfile="OpenSim/Region/Framework/OpenSim.Region.Framework.Tests.dll.build" target="build" />
272 <nant buildfile="OpenSim/Region/ClientStack/Linden/Caps/OpenSim.Region.ClientStack.LindenCaps.Tests.dll.build" target="build" />
273 <nant buildfile="OpenSim/Region/ClientStack/Linden/UDP/Tests/OpenSim.Region.ClientStack.LindenUDP.Tests.dll.build" target="build" />
274 <nant buildfile="OpenSim/Region/ScriptEngine/OpenSim.Region.ScriptEngine.Tests.dll.build" target="build" />
275 <nant buildfile="OpenSim/Region/Physics/OdePlugin/Tests/OpenSim.Region.Physics.OdePlugin.Tests.dll.build" target="build" />
276 <nant buildfile="OpenSim/Region/Physics/BulletSPlugin/Tests/OpenSim.Region.Physics.BulletSPlugin.Tests.dll.build" target="build" />
277 <nant buildfile="OpenSim/Server/Handlers/OpenSim.Server.Handlers.Tests.dll.build" target="build" />
278 <nant buildfile="OpenSim/Tests/Stress/OpenSim.Tests.Stress.dll.build" target="build" />
279 <nant buildfile="OpenSim/Tests/Performance/OpenSim.Tests.Performance.dll.build" target="build" />
280 </target>
281  
282 <target name="build-release" depends="Release, init, build" description="Builds in Release mode" />
283  
284 <target name="build-debug" depends="Debug, init, build" description="Builds in Debug mode" />
285  
286 <target name="package" depends="clean, doc" description="Builds all" />
287  
288 <target name="doc" depends="build-release">
289 <echo message="Generating all documentation from all builds" />
290 <nant buildfile="OpenSim/Region/Application/OpenSim.exe.build" target="doc" />
291 <nant buildfile="OpenSim/Addons/Groups/OpenSim.Addons.Groups.dll.build" target="doc" />
292 <nant buildfile="OpenSim/Addons/OfflineIM/OpenSim.Addons.OfflineIM.dll.build" target="doc" />
293 <nant buildfile="OpenSim/ApplicationPlugins/LoadRegions/OpenSim.ApplicationPlugins.LoadRegions.dll.build" target="doc" />
294 <nant buildfile="OpenSim/ApplicationPlugins/RegionModulesController/OpenSim.ApplicationPlugins.RegionModulesController.dll.build" target="doc" />
295 <nant buildfile="OpenSim/ApplicationPlugins/RemoteController/OpenSim.ApplicationPlugins.RemoteController.dll.build" target="doc" />
296 <nant buildfile="OpenSim/Capabilities/OpenSim.Capabilities.dll.build" target="doc" />
297 <nant buildfile="OpenSim/Capabilities/Handlers/OpenSim.Capabilities.Handlers.dll.build" target="doc" />
298 <nant buildfile="OpenSim/Capabilities/Handlers/OpenSim.Capabilities.Handlers.Tests.dll.build" target="doc" />
299 <nant buildfile="OpenSim/ConsoleClient/OpenSim.ConsoleClient.exe.build" target="doc" />
300 <nant buildfile="OpenSim/Data/OpenSim.Data.dll.build" target="doc" />
301 <nant buildfile="OpenSim/Data/MSSQL/OpenSim.Data.MSSQL.dll.build" target="doc" />
302 <nant buildfile="OpenSim/Data/MySQL/OpenSim.Data.MySQL.dll.build" target="doc" />
303 <nant buildfile="OpenSim/Data/Null/OpenSim.Data.Null.dll.build" target="doc" />
304 <nant buildfile="OpenSim/Data/PGSQL/OpenSim.Data.PGSQL.dll.build" target="doc" />
305 <nant buildfile="OpenSim/Data/SQLite/OpenSim.Data.SQLite.dll.build" target="doc" />
306 <nant buildfile="OpenSim/Data/Tests/OpenSim.Data.Tests.dll.build" target="doc" />
307 <nant buildfile="OpenSim/Framework/OpenSim.Framework.dll.build" target="doc" />
308 <nant buildfile="OpenSim/Framework/AssetLoader/Filesystem/OpenSim.Framework.AssetLoader.Filesystem.dll.build" target="doc" />
309 <nant buildfile="OpenSim/Framework/Communications/OpenSim.Framework.Communications.dll.build" target="doc" />
310 <nant buildfile="OpenSim/Framework/Configuration/HTTP/OpenSim.Framework.Configuration.HTTP.dll.build" target="doc" />
311 <nant buildfile="OpenSim/Framework/Configuration/XML/OpenSim.Framework.Configuration.XML.dll.build" target="doc" />
312 <nant buildfile="OpenSim/Framework/Console/OpenSim.Framework.Console.dll.build" target="doc" />
313 <nant buildfile="OpenSim/Framework/Monitoring/OpenSim.Framework.Monitoring.dll.build" target="doc" />
314 <nant buildfile="OpenSim/Framework/RegionLoader/Filesystem/OpenSim.Framework.RegionLoader.Filesystem.dll.build" target="doc" />
315 <nant buildfile="OpenSim/Framework/RegionLoader/Web/OpenSim.Framework.RegionLoader.Web.dll.build" target="doc" />
316 <nant buildfile="OpenSim/Framework/Serialization/OpenSim.Framework.Serialization.dll.build" target="doc" />
317 <nant buildfile="OpenSim/Framework/Serialization/Tests/OpenSim.Framework.Serialization.Tests.dll.build" target="doc" />
318 <nant buildfile="OpenSim/Framework/Servers/OpenSim.Framework.Servers.dll.build" target="doc" />
319 <nant buildfile="OpenSim/Framework/Servers/HttpServer/OpenSim.Framework.Servers.HttpServer.dll.build" target="doc" />
320 <nant buildfile="OpenSim/Framework/Servers/Tests/OpenSim.Framework.Servers.Tests.dll.build" target="doc" />
321 <nant buildfile="OpenSim/Framework/Tests/OpenSim.Framework.Tests.dll.build" target="doc" />
322 <nant buildfile="OpenSim/Region/ClientStack/OpenSim.Region.ClientStack.dll.build" target="doc" />
323 <nant buildfile="OpenSim/Region/ClientStack/Linden/Caps/OpenSim.Region.ClientStack.LindenCaps.dll.build" target="doc" />
324 <nant buildfile="OpenSim/Region/ClientStack/Linden/Caps/OpenSim.Region.ClientStack.LindenCaps.Tests.dll.build" target="doc" />
325 <nant buildfile="OpenSim/Region/ClientStack/Linden/UDP/OpenSim.Region.ClientStack.LindenUDP.dll.build" target="doc" />
326 <nant buildfile="OpenSim/Region/ClientStack/Linden/UDP/Tests/OpenSim.Region.ClientStack.LindenUDP.Tests.dll.build" target="doc" />
327 <nant buildfile="OpenSim/Region/CoreModules/OpenSim.Region.CoreModules.dll.build" target="doc" />
328 <nant buildfile="OpenSim/Region/CoreModules/OpenSim.Region.CoreModules.Tests.dll.build" target="doc" />
329 <nant buildfile="OpenSim/Region/DataSnapshot/OpenSim.Region.DataSnapshot.dll.build" target="doc" />
330 <nant buildfile="OpenSim/Region/Framework/OpenSim.Region.Framework.dll.build" target="doc" />
331 <nant buildfile="OpenSim/Region/Framework/OpenSim.Region.Framework.Tests.dll.build" target="doc" />
332 <nant buildfile="OpenSim/Region/OptionalModules/OpenSim.Region.OptionalModules.dll.build" target="doc" />
333 <nant buildfile="OpenSim/Region/OptionalModules/OpenSim.Region.OptionalModules.Tests.dll.build" target="doc" />
334 <nant buildfile="OpenSim/Region/Physics/BasicPhysicsPlugin/OpenSim.Region.Physics.BasicPhysicsPlugin.dll.build" target="doc" />
335 <nant buildfile="OpenSim/Region/Physics/BulletSPlugin/OpenSim.Region.Physics.BulletSPlugin.dll.build" target="doc" />
336 <nant buildfile="OpenSim/Region/Physics/BulletSPlugin/Tests/OpenSim.Region.Physics.BulletSPlugin.Tests.dll.build" target="doc" />
337 <nant buildfile="OpenSim/Region/Physics/ConvexDecompositionDotNet/OpenSim.Region.Physics.ConvexDecompositionDotNet.dll.build" target="doc" />
338 <nant buildfile="OpenSim/Region/Physics/Manager/OpenSim.Region.Physics.Manager.dll.build" target="doc" />
339 <nant buildfile="OpenSim/Region/Physics/Meshing/OpenSim.Region.Physics.Meshing.dll.build" target="doc" />
340 <nant buildfile="OpenSim/Region/Physics/OdePlugin/OpenSim.Region.Physics.OdePlugin.dll.build" target="doc" />
341 <nant buildfile="OpenSim/Region/Physics/OdePlugin/Tests/OpenSim.Region.Physics.OdePlugin.Tests.dll.build" target="doc" />
342 <nant buildfile="OpenSim/Region/Physics/POSPlugin/OpenSim.Region.Physics.POSPlugin.dll.build" target="doc" />
343 <nant buildfile="OpenSim/Region/RegionCombinerModule/OpenSim.Region.RegionCombinerModule.dll.build" target="doc" />
344 <nant buildfile="OpenSim/Region/ScriptEngine/Shared/OpenSim.Region.ScriptEngine.Shared.dll.build" target="doc" />
345 <nant buildfile="OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OpenSim.Region.ScriptEngine.Shared.Api.dll.build" target="doc" />
346 <nant buildfile="OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OpenSim.Region.ScriptEngine.Shared.Api.Runtime.dll.build" target="doc" />
347 <nant buildfile="OpenSim/Region/ScriptEngine/Shared/CodeTools/OpenSim.Region.ScriptEngine.Shared.CodeTools.dll.build" target="doc" />
348 <nant buildfile="OpenSim/Region/ScriptEngine/Shared/Instance/OpenSim.Region.ScriptEngine.Shared.Instance.dll.build" target="doc" />
349 <nant buildfile="OpenSim/Region/ScriptEngine/Shared/Api/Runtime/YieldProlog/OpenSim.Region.ScriptEngine.Shared.YieldProlog.dll.build" target="doc" />
350 <nant buildfile="OpenSim/Region/ScriptEngine/OpenSim.Region.ScriptEngine.Tests.dll.build" target="doc" />
351 <nant buildfile="OpenSim/Region/ScriptEngine/XEngine/OpenSim.Region.ScriptEngine.XEngine.dll.build" target="doc" />
352 <nant buildfile="OpenSim/Region/ScriptEngine/XEngine/Api/Runtime/OpenSim.Region.ScriptEngine.XEngine.Api.Runtime.dll.build" target="doc" />
353 <nant buildfile="OpenSim/Region/UserStatistics/OpenSim.Region.UserStatistics.dll.build" target="doc" />
354 <nant buildfile="OpenSim/Server/Base/OpenSim.Server.Base.dll.build" target="doc" />
355 <nant buildfile="OpenSim/Server/Handlers/OpenSim.Server.Handlers.dll.build" target="doc" />
356 <nant buildfile="OpenSim/Server/Handlers/OpenSim.Server.Handlers.Tests.dll.build" target="doc" />
357 <nant buildfile="OpenSim/Services/AssetService/OpenSim.Services.AssetService.dll.build" target="doc" />
358 <nant buildfile="OpenSim/Services/AuthenticationService/OpenSim.Services.AuthenticationService.dll.build" target="doc" />
359 <nant buildfile="OpenSim/Services/AuthorizationService/OpenSim.Services.AuthorizationService.dll.build" target="doc" />
360 <nant buildfile="OpenSim/Services/AvatarService/OpenSim.Services.AvatarService.dll.build" target="doc" />
361 <nant buildfile="OpenSim/Services/Base/OpenSim.Services.Base.dll.build" target="doc" />
362 <nant buildfile="OpenSim/Services/Connectors/OpenSim.Services.Connectors.dll.build" target="doc" />
363 <nant buildfile="OpenSim/Services/FreeswitchService/OpenSim.Services.FreeswitchService.dll.build" target="doc" />
364 <nant buildfile="OpenSim/Services/Friends/OpenSim.Services.FriendsService.dll.build" target="doc" />
365 <nant buildfile="OpenSim/Services/GridService/OpenSim.Services.GridService.dll.build" target="doc" />
366 <nant buildfile="OpenSim/Services/HypergridService/OpenSim.Services.HypergridService.dll.build" target="doc" />
367 <nant buildfile="OpenSim/Services/Interfaces/OpenSim.Services.Interfaces.dll.build" target="doc" />
368 <nant buildfile="OpenSim/Services/InventoryService/OpenSim.Services.InventoryService.dll.build" target="doc" />
369 <nant buildfile="OpenSim/Services/InventoryService/Tests/OpenSim.Services.InventoryService.Tests.dll.build" target="doc" />
370 <nant buildfile="OpenSim/Services/LLLoginService/OpenSim.Services.LLLoginService.dll.build" target="doc" />
371 <nant buildfile="OpenSim/Services/MapImageService/OpenSim.Services.MapImageService.dll.build" target="doc" />
372 <nant buildfile="OpenSim/Services/PresenceService/OpenSim.Services.PresenceService.dll.build" target="doc" />
373 <nant buildfile="OpenSim/Services/UserAccountService/OpenSim.Services.UserAccountService.dll.build" target="doc" />
374 <nant buildfile="OpenSim/Services/UserProfilesService/OpenSim.Services.UserProfilesService.dll.build" target="doc" />
375 <nant buildfile="OpenSim/Tests/OpenSim.Tests.dll.build" target="doc" />
376 <nant buildfile="OpenSim/Tests/Clients/Assets/OpenSim.Tests.Clients.AssetClient.exe.build" target="doc" />
377 <nant buildfile="OpenSim/Tests/Clients/Grid/OpenSim.Tests.Clients.GridClient.exe.build" target="doc" />
378 <nant buildfile="OpenSim/Tests/Clients/InstantMessage/OpenSim.Tests.Clients.InstantantMessage.exe.build" target="doc" />
379 <nant buildfile="OpenSim/Tests/Clients/Presence/OpenSim.Tests.Clients.PresenceClient.exe.build" target="doc" />
380 <nant buildfile="OpenSim/Tests/Clients/UserAccounts/OpenSim.Tests.Clients.UserAccountClient.exe.build" target="doc" />
381 <nant buildfile="OpenSim/Tests/Common/OpenSim.Tests.Common.dll.build" target="doc" />
382 <nant buildfile="OpenSim/Tests/Performance/OpenSim.Tests.Performance.dll.build" target="doc" />
383 <nant buildfile="OpenSim/Tests/Stress/OpenSim.Tests.Stress.dll.build" target="doc" />
384 <nant buildfile="OpenSim/Tools/Configger/OpenSim.Tools.Configger.exe.build" target="doc" />
385 <nant buildfile="OpenSim/Tools/Compiler/OpenSim.Tools.lslc.exe.build" target="doc" />
386 <nant buildfile="OpenSim/Tools/pCampBot/pCampBot.exe.build" target="doc" />
387 <nant buildfile="OpenSim/Server/Robust.exe.build" target="doc" />
388 <nant buildfile="ThirdParty/SmartThreadPool/SmartThreadPool.dll.build" target="doc" />
389 </target>
390  
391 </project>