diff options
author | Tedd Hansen | 2008-11-08 17:35:48 +0000 |
---|---|---|
committer | Tedd Hansen | 2008-11-08 17:35:48 +0000 |
commit | 9511a8c76370f21e839114007dcd2b25c69b009a (patch) | |
tree | b63323dfd96ecd1cc3cd560939bd66bb43ec9c1c /prebuild.xml | |
parent | * Added IClientIM to IClientCore interfaces (diff) | |
download | opensim-SC_OLD-9511a8c76370f21e839114007dcd2b25c69b009a.zip opensim-SC_OLD-9511a8c76370f21e839114007dcd2b25c69b009a.tar.gz opensim-SC_OLD-9511a8c76370f21e839114007dcd2b25c69b009a.tar.bz2 opensim-SC_OLD-9511a8c76370f21e839114007dcd2b25c69b009a.tar.xz |
Work in progress on SECS stuff. Have been holding it off until after 0.6 release. Still messy as hell and doesn't really work yet. Will undergo dramatic changes. AND MOST IMPORTANTLY: Will be conformed to work in coop with todays DNE and XEngine, hopefully one day providing a common interface for all components.
Diffstat (limited to '')
-rw-r--r-- | prebuild.xml | 146 |
1 files changed, 102 insertions, 44 deletions
diff --git a/prebuild.xml b/prebuild.xml index 7ca00d6..f3af10b 100644 --- a/prebuild.xml +++ b/prebuild.xml | |||
@@ -2205,7 +2205,29 @@ | |||
2205 | </Files> | 2205 | </Files> |
2206 | </Project> | 2206 | </Project> |
2207 | 2207 | ||
2208 | <Project name="OpenSim.ApplicationPlugins.ScriptEngine" path="OpenSim/ApplicationPlugins/ScriptEngine" type="Library"> | 2208 | <Project name="OpenSim.ScriptEngine.Shared.Script" path="OpenSim/ScriptEngine/Shared.Script" type="Library"> |
2209 | <Configuration name="Debug"> | ||
2210 | <Options> | ||
2211 | <OutputPath>../../../bin/</OutputPath> | ||
2212 | </Options> | ||
2213 | </Configuration> | ||
2214 | <Configuration name="Release"> | ||
2215 | <Options> | ||
2216 | <OutputPath>../../../bin/</OutputPath> | ||
2217 | </Options> | ||
2218 | </Configuration> | ||
2219 | |||
2220 | <ReferencePath>../../../bin/</ReferencePath> | ||
2221 | <Reference name="System" localCopy="false"/> | ||
2222 | |||
2223 | <Files> | ||
2224 | <Match pattern="*.cs" recurse="true" > | ||
2225 | <Exclude name="Tests" pattern="Tests" /> | ||
2226 | </Match> | ||
2227 | </Files> | ||
2228 | </Project> | ||
2229 | |||
2230 | <Project name="OpenSim.ScriptEngine.Shared" path="OpenSim/ScriptEngine/Shared" type="Library"> | ||
2209 | <Configuration name="Debug"> | 2231 | <Configuration name="Debug"> |
2210 | <Options> | 2232 | <Options> |
2211 | <OutputPath>../../../bin/</OutputPath> | 2233 | <OutputPath>../../../bin/</OutputPath> |
@@ -2218,7 +2240,6 @@ | |||
2218 | </Configuration> | 2240 | </Configuration> |
2219 | 2241 | ||
2220 | <ReferencePath>../../../bin/</ReferencePath> | 2242 | <ReferencePath>../../../bin/</ReferencePath> |
2221 | <ReferencePath>../../../bin/ScriptEngines/</ReferencePath> | ||
2222 | <Reference name="System" localCopy="false"/> | 2243 | <Reference name="System" localCopy="false"/> |
2223 | <Reference name="System.Data" localCopy="false"/> | 2244 | <Reference name="System.Data" localCopy="false"/> |
2224 | <Reference name="System.Web" localCopy="false"/> | 2245 | <Reference name="System.Web" localCopy="false"/> |
@@ -2227,20 +2248,58 @@ | |||
2227 | <Reference name="OpenMetaverse.dll"/> | 2248 | <Reference name="OpenMetaverse.dll"/> |
2228 | <Reference name="OpenSim" /> | 2249 | <Reference name="OpenSim" /> |
2229 | <Reference name="OpenSim.Framework"/> | 2250 | <Reference name="OpenSim.Framework"/> |
2230 | <Reference name="OpenSim.Framework.Servers"/> | ||
2231 | <Reference name="OpenSim.Framework.Communications"/> | 2251 | <Reference name="OpenSim.Framework.Communications"/> |
2232 | <Reference name="OpenSim.Region.ClientStack"/> | ||
2233 | <Reference name="OpenSim.Region.Environment" /> | 2252 | <Reference name="OpenSim.Region.Environment" /> |
2234 | <Reference name="OpenSim.Region.Interfaces" /> | 2253 | <Reference name="OpenSim.Region.Interfaces" /> |
2235 | <Reference name="OpenSim.Region.Physics.Manager" /> | 2254 | <Reference name="OpenSim.Region.Physics.Manager" /> |
2236 | <Reference name="OpenSim.Framework.Console"/> | 2255 | <Reference name="OpenSim.Framework.Console"/> |
2237 | <Reference name="Nini.dll" /> | 2256 | <Reference name="Nini.dll" /> |
2238 | <Reference name="RAIL.dll"/> | 2257 | <Reference name="log4net.dll"/> |
2258 | <Reference name="OpenSim.Region.ScriptEngine.Shared"/> | ||
2259 | <Reference name="OpenSim.ScriptEngine.Shared.Script"/> | ||
2260 | |||
2261 | <Files> | ||
2262 | <Match pattern="*.cs" recurse="true" > | ||
2263 | <Exclude name="Tests" pattern="Tests" /> | ||
2264 | </Match> | ||
2265 | </Files> | ||
2266 | </Project> | ||
2267 | |||
2268 | <Project name="OpenSim.ApplicationPlugins.ScriptEngine" path="OpenSim/ApplicationPlugins/ScriptEngine" type="Library"> | ||
2269 | <Configuration name="Debug"> | ||
2270 | <Options> | ||
2271 | <OutputPath>../../../bin/</OutputPath> | ||
2272 | </Options> | ||
2273 | </Configuration> | ||
2274 | <Configuration name="Release"> | ||
2275 | <Options> | ||
2276 | <OutputPath>../../../bin/</OutputPath> | ||
2277 | </Options> | ||
2278 | </Configuration> | ||
2279 | |||
2280 | <ReferencePath>../../../bin/</ReferencePath> | ||
2281 | <Reference name="System" localCopy="false"/> | ||
2282 | <Reference name="System.Data" localCopy="false"/> | ||
2283 | <Reference name="System.Web" localCopy="false"/> | ||
2284 | <Reference name="System.Xml" localCopy="false"/> | ||
2285 | <Reference name="OpenMetaverseTypes.dll"/> | ||
2286 | <Reference name="OpenMetaverse.dll"/> | ||
2287 | <Reference name="OpenSim" /> | ||
2288 | <Reference name="OpenSim.Framework"/> | ||
2289 | <Reference name="OpenSim.Framework.Communications"/> | ||
2290 | <Reference name="OpenSim.Region.Environment" /> | ||
2291 | <Reference name="OpenSim.Region.Interfaces" /> | ||
2292 | <Reference name="OpenSim.Region.Physics.Manager" /> | ||
2239 | <Reference name="OpenSim.Framework.Console"/> | 2293 | <Reference name="OpenSim.Framework.Console"/> |
2240 | <Reference name="Nini.dll" /> | 2294 | <Reference name="Nini.dll" /> |
2241 | <Reference name="log4net.dll"/> | 2295 | <Reference name="log4net.dll"/> |
2296 | <Reference name="OpenSim.ScriptEngine.Shared"/> | ||
2297 | <Reference name="OpenSim.ScriptEngine.Shared.Script"/> | ||
2298 | <Reference name="OpenSim.Region.ClientStack"/> | ||
2299 | <Reference name="OpenSim.Framework.Servers"/> | ||
2242 | 2300 | ||
2243 | <Files> | 2301 | <Files> |
2302 | <Match pattern="*.addin.xml" path="Resources" buildAction="EmbeddedResource" recurse="true"/> | ||
2244 | <Match pattern="*.cs" recurse="true" > | 2303 | <Match pattern="*.cs" recurse="true" > |
2245 | <Exclude name="Tests" pattern="Tests" /> | 2304 | <Exclude name="Tests" pattern="Tests" /> |
2246 | </Match> | 2305 | </Match> |
@@ -2250,17 +2309,16 @@ | |||
2250 | <Project name="OpenSim.ScriptEngine.Components.DotNetEngine.Commands_LSL" path="OpenSim/ScriptEngine/Components/DotNetEngine/Commands_LSL" type="Library"> | 2309 | <Project name="OpenSim.ScriptEngine.Components.DotNetEngine.Commands_LSL" path="OpenSim/ScriptEngine/Components/DotNetEngine/Commands_LSL" type="Library"> |
2251 | <Configuration name="Debug"> | 2310 | <Configuration name="Debug"> |
2252 | <Options> | 2311 | <Options> |
2253 | <OutputPath>../../../../../bin/ScriptEngines/</OutputPath> | 2312 | <OutputPath>../../../../../bin/</OutputPath> |
2254 | </Options> | 2313 | </Options> |
2255 | </Configuration> | 2314 | </Configuration> |
2256 | <Configuration name="Release"> | 2315 | <Configuration name="Release"> |
2257 | <Options> | 2316 | <Options> |
2258 | <OutputPath>../../../../../bin/ScriptEngines/</OutputPath> | 2317 | <OutputPath>../../../../../bin/</OutputPath> |
2259 | </Options> | 2318 | </Options> |
2260 | </Configuration> | 2319 | </Configuration> |
2261 | 2320 | ||
2262 | <ReferencePath>../../../../../bin/</ReferencePath> | 2321 | <ReferencePath>../../../../../bin/</ReferencePath> |
2263 | <ReferencePath>../../../../../bin/ScriptEngines/</ReferencePath> | ||
2264 | <Reference name="System" localCopy="false"/> | 2322 | <Reference name="System" localCopy="false"/> |
2265 | <Reference name="System.Data" localCopy="false"/> | 2323 | <Reference name="System.Data" localCopy="false"/> |
2266 | <Reference name="System.Web" localCopy="false"/> | 2324 | <Reference name="System.Web" localCopy="false"/> |
@@ -2274,12 +2332,11 @@ | |||
2274 | <Reference name="OpenSim.Region.Interfaces" /> | 2332 | <Reference name="OpenSim.Region.Interfaces" /> |
2275 | <Reference name="OpenSim.Region.Physics.Manager" /> | 2333 | <Reference name="OpenSim.Region.Physics.Manager" /> |
2276 | <Reference name="OpenSim.Framework.Console"/> | 2334 | <Reference name="OpenSim.Framework.Console"/> |
2277 | <Reference name="OpenSim.ApplicationPlugins.ScriptEngine"/> | ||
2278 | <Reference name="Nini.dll" /> | ||
2279 | <Reference name="RAIL.dll"/> | ||
2280 | <Reference name="OpenSim.Framework.Console"/> | ||
2281 | <Reference name="Nini.dll" /> | 2335 | <Reference name="Nini.dll" /> |
2282 | <Reference name="log4net.dll"/> | 2336 | <Reference name="log4net.dll"/> |
2337 | <Reference name="OpenSim.ScriptEngine.Shared"/> | ||
2338 | <Reference name="OpenSim.Region.ScriptEngine.Shared"/> | ||
2339 | <Reference name="OpenSim.ScriptEngine.Shared.Script"/> | ||
2283 | 2340 | ||
2284 | <Files> | 2341 | <Files> |
2285 | <Match pattern="*.cs" recurse="true" > | 2342 | <Match pattern="*.cs" recurse="true" > |
@@ -2291,17 +2348,16 @@ | |||
2291 | <Project name="OpenSim.ScriptEngine.Components.DotNetEngine.Commands_OSSL" path="OpenSim/ScriptEngine/Components/DotNetEngine/Commands_OSSL" type="Library"> | 2348 | <Project name="OpenSim.ScriptEngine.Components.DotNetEngine.Commands_OSSL" path="OpenSim/ScriptEngine/Components/DotNetEngine/Commands_OSSL" type="Library"> |
2292 | <Configuration name="Debug"> | 2349 | <Configuration name="Debug"> |
2293 | <Options> | 2350 | <Options> |
2294 | <OutputPath>../../../../../bin/ScriptEngines/</OutputPath> | 2351 | <OutputPath>../../../../../bin/</OutputPath> |
2295 | </Options> | 2352 | </Options> |
2296 | </Configuration> | 2353 | </Configuration> |
2297 | <Configuration name="Release"> | 2354 | <Configuration name="Release"> |
2298 | <Options> | 2355 | <Options> |
2299 | <OutputPath>../../../../../bin/ScriptEngines/</OutputPath> | 2356 | <OutputPath>../../../../../bin/</OutputPath> |
2300 | </Options> | 2357 | </Options> |
2301 | </Configuration> | 2358 | </Configuration> |
2302 | 2359 | ||
2303 | <ReferencePath>../../../../../bin/</ReferencePath> | 2360 | <ReferencePath>../../../../../bin/</ReferencePath> |
2304 | <ReferencePath>../../../../../bin/ScriptEngines/</ReferencePath> | ||
2305 | <Reference name="System" localCopy="false"/> | 2361 | <Reference name="System" localCopy="false"/> |
2306 | <Reference name="System.Data" localCopy="false"/> | 2362 | <Reference name="System.Data" localCopy="false"/> |
2307 | <Reference name="System.Web" localCopy="false"/> | 2363 | <Reference name="System.Web" localCopy="false"/> |
@@ -2315,12 +2371,11 @@ | |||
2315 | <Reference name="OpenSim.Region.Interfaces" /> | 2371 | <Reference name="OpenSim.Region.Interfaces" /> |
2316 | <Reference name="OpenSim.Region.Physics.Manager" /> | 2372 | <Reference name="OpenSim.Region.Physics.Manager" /> |
2317 | <Reference name="OpenSim.Framework.Console"/> | 2373 | <Reference name="OpenSim.Framework.Console"/> |
2318 | <Reference name="OpenSim.ApplicationPlugins.ScriptEngine"/> | ||
2319 | <Reference name="Nini.dll" /> | ||
2320 | <Reference name="RAIL.dll"/> | ||
2321 | <Reference name="OpenSim.Framework.Console"/> | ||
2322 | <Reference name="Nini.dll" /> | 2374 | <Reference name="Nini.dll" /> |
2323 | <Reference name="log4net.dll"/> | 2375 | <Reference name="log4net.dll"/> |
2376 | <Reference name="OpenSim.ScriptEngine.Shared"/> | ||
2377 | <Reference name="OpenSim.Region.ScriptEngine.Shared"/> | ||
2378 | <Reference name="OpenSim.ScriptEngine.Shared.Script"/> | ||
2324 | 2379 | ||
2325 | <Files> | 2380 | <Files> |
2326 | <Match pattern="*.cs" recurse="true" > | 2381 | <Match pattern="*.cs" recurse="true" > |
@@ -2332,12 +2387,12 @@ | |||
2332 | <Project name="OpenSim.ScriptEngine.Components.DotNetEngine.Compilers" path="OpenSim/ScriptEngine/Components/DotNetEngine/Compilers" type="Library"> | 2387 | <Project name="OpenSim.ScriptEngine.Components.DotNetEngine.Compilers" path="OpenSim/ScriptEngine/Components/DotNetEngine/Compilers" type="Library"> |
2333 | <Configuration name="Debug"> | 2388 | <Configuration name="Debug"> |
2334 | <Options> | 2389 | <Options> |
2335 | <OutputPath>../../../../../bin/ScriptEngines/</OutputPath> | 2390 | <OutputPath>../../../../../bin/</OutputPath> |
2336 | </Options> | 2391 | </Options> |
2337 | </Configuration> | 2392 | </Configuration> |
2338 | <Configuration name="Release"> | 2393 | <Configuration name="Release"> |
2339 | <Options> | 2394 | <Options> |
2340 | <OutputPath>../../../../../bin/ScriptEngines/</OutputPath> | 2395 | <OutputPath>../../../../../bin/</OutputPath> |
2341 | </Options> | 2396 | </Options> |
2342 | </Configuration> | 2397 | </Configuration> |
2343 | 2398 | ||
@@ -2356,12 +2411,13 @@ | |||
2356 | <Reference name="OpenSim.Region.Interfaces" /> | 2411 | <Reference name="OpenSim.Region.Interfaces" /> |
2357 | <Reference name="OpenSim.Region.Physics.Manager" /> | 2412 | <Reference name="OpenSim.Region.Physics.Manager" /> |
2358 | <Reference name="OpenSim.Framework.Console"/> | 2413 | <Reference name="OpenSim.Framework.Console"/> |
2359 | <Reference name="OpenSim.ApplicationPlugins.ScriptEngine"/> | ||
2360 | <Reference name="Nini.dll" /> | ||
2361 | <Reference name="RAIL.dll"/> | ||
2362 | <Reference name="OpenSim.Framework.Console"/> | ||
2363 | <Reference name="Nini.dll" /> | 2414 | <Reference name="Nini.dll" /> |
2364 | <Reference name="log4net.dll"/> | 2415 | <Reference name="log4net.dll"/> |
2416 | <Reference name="OpenSim.ScriptEngine.Shared"/> | ||
2417 | <Reference name="OpenSim.Region.ScriptEngine.Shared"/> | ||
2418 | <Reference name="OpenSim.ScriptEngine.Shared.Script"/> | ||
2419 | <Reference name="OpenSim.Region.ScriptEngine.Shared.CodeTools"/> | ||
2420 | <Reference name="Microsoft.JScript"/> | ||
2365 | 2421 | ||
2366 | <Files> | 2422 | <Files> |
2367 | <Match pattern="*.cs" recurse="true" > | 2423 | <Match pattern="*.cs" recurse="true" > |
@@ -2373,17 +2429,16 @@ | |||
2373 | <Project name="OpenSim.ScriptEngine.Components.DotNetEngine.Events" path="OpenSim/ScriptEngine/Components/DotNetEngine/Events" type="Library"> | 2429 | <Project name="OpenSim.ScriptEngine.Components.DotNetEngine.Events" path="OpenSim/ScriptEngine/Components/DotNetEngine/Events" type="Library"> |
2374 | <Configuration name="Debug"> | 2430 | <Configuration name="Debug"> |
2375 | <Options> | 2431 | <Options> |
2376 | <OutputPath>../../../../../bin/ScriptEngines/</OutputPath> | 2432 | <OutputPath>../../../../../bin/</OutputPath> |
2377 | </Options> | 2433 | </Options> |
2378 | </Configuration> | 2434 | </Configuration> |
2379 | <Configuration name="Release"> | 2435 | <Configuration name="Release"> |
2380 | <Options> | 2436 | <Options> |
2381 | <OutputPath>../../../../../bin/ScriptEngines/</OutputPath> | 2437 | <OutputPath>../../../../../bin/</OutputPath> |
2382 | </Options> | 2438 | </Options> |
2383 | </Configuration> | 2439 | </Configuration> |
2384 | 2440 | ||
2385 | <ReferencePath>../../../../../bin/</ReferencePath> | 2441 | <ReferencePath>../../../../../bin/</ReferencePath> |
2386 | <ReferencePath>../../../../../bin/ScriptEngines/</ReferencePath> | ||
2387 | <Reference name="System" localCopy="false"/> | 2442 | <Reference name="System" localCopy="false"/> |
2388 | <Reference name="System.Data" localCopy="false"/> | 2443 | <Reference name="System.Data" localCopy="false"/> |
2389 | <Reference name="System.Web" localCopy="false"/> | 2444 | <Reference name="System.Web" localCopy="false"/> |
@@ -2397,12 +2452,12 @@ | |||
2397 | <Reference name="OpenSim.Region.Interfaces" /> | 2452 | <Reference name="OpenSim.Region.Interfaces" /> |
2398 | <Reference name="OpenSim.Region.Physics.Manager" /> | 2453 | <Reference name="OpenSim.Region.Physics.Manager" /> |
2399 | <Reference name="OpenSim.Framework.Console"/> | 2454 | <Reference name="OpenSim.Framework.Console"/> |
2400 | <Reference name="OpenSim.ApplicationPlugins.ScriptEngine"/> | ||
2401 | <Reference name="Nini.dll" /> | ||
2402 | <Reference name="RAIL.dll"/> | ||
2403 | <Reference name="OpenSim.Framework.Console"/> | ||
2404 | <Reference name="Nini.dll" /> | 2455 | <Reference name="Nini.dll" /> |
2405 | <Reference name="log4net.dll"/> | 2456 | <Reference name="log4net.dll"/> |
2457 | <Reference name="OpenSim.ScriptEngine.Shared"/> | ||
2458 | <Reference name="OpenSim.Region.ScriptEngine.Shared"/> | ||
2459 | <Reference name="OpenSim.ScriptEngine.Shared.Script"/> | ||
2460 | <Reference name="Microsoft.JScript"/> | ||
2406 | 2461 | ||
2407 | <Files> | 2462 | <Files> |
2408 | <Match pattern="*.cs" recurse="true" > | 2463 | <Match pattern="*.cs" recurse="true" > |
@@ -2414,12 +2469,12 @@ | |||
2414 | <Project name="OpenSim.ScriptEngine.Components.DotNetEngine.Scheduler" path="OpenSim/ScriptEngine/Components/DotNetEngine/Scheduler" type="Library"> | 2469 | <Project name="OpenSim.ScriptEngine.Components.DotNetEngine.Scheduler" path="OpenSim/ScriptEngine/Components/DotNetEngine/Scheduler" type="Library"> |
2415 | <Configuration name="Debug"> | 2470 | <Configuration name="Debug"> |
2416 | <Options> | 2471 | <Options> |
2417 | <OutputPath>../../../../../bin/ScriptEngines/</OutputPath> | 2472 | <OutputPath>../../../../../bin/</OutputPath> |
2418 | </Options> | 2473 | </Options> |
2419 | </Configuration> | 2474 | </Configuration> |
2420 | <Configuration name="Release"> | 2475 | <Configuration name="Release"> |
2421 | <Options> | 2476 | <Options> |
2422 | <OutputPath>../../../../../bin/ScriptEngines/</OutputPath> | 2477 | <OutputPath>../../../../../bin/</OutputPath> |
2423 | </Options> | 2478 | </Options> |
2424 | </Configuration> | 2479 | </Configuration> |
2425 | 2480 | ||
@@ -2438,12 +2493,11 @@ | |||
2438 | <Reference name="OpenSim.Region.Interfaces" /> | 2493 | <Reference name="OpenSim.Region.Interfaces" /> |
2439 | <Reference name="OpenSim.Region.Physics.Manager" /> | 2494 | <Reference name="OpenSim.Region.Physics.Manager" /> |
2440 | <Reference name="OpenSim.Framework.Console"/> | 2495 | <Reference name="OpenSim.Framework.Console"/> |
2441 | <Reference name="OpenSim.ApplicationPlugins.ScriptEngine"/> | ||
2442 | <Reference name="Nini.dll" /> | ||
2443 | <Reference name="RAIL.dll"/> | ||
2444 | <Reference name="OpenSim.Framework.Console"/> | ||
2445 | <Reference name="Nini.dll" /> | 2496 | <Reference name="Nini.dll" /> |
2446 | <Reference name="log4net.dll"/> | 2497 | <Reference name="log4net.dll"/> |
2498 | <Reference name="OpenSim.ScriptEngine.Shared"/> | ||
2499 | <Reference name="OpenSim.Region.ScriptEngine.Shared"/> | ||
2500 | <Reference name="OpenSim.ScriptEngine.Shared.Script"/> | ||
2447 | 2501 | ||
2448 | <Files> | 2502 | <Files> |
2449 | <Match pattern="*.cs" recurse="true" > | 2503 | <Match pattern="*.cs" recurse="true" > |
@@ -2455,12 +2509,12 @@ | |||
2455 | <Project name="OpenSim.ScriptEngine.Engines.DotNetEngine" path="OpenSim/ScriptEngine/Engines/DotNetEngine" type="Library"> | 2509 | <Project name="OpenSim.ScriptEngine.Engines.DotNetEngine" path="OpenSim/ScriptEngine/Engines/DotNetEngine" type="Library"> |
2456 | <Configuration name="Debug"> | 2510 | <Configuration name="Debug"> |
2457 | <Options> | 2511 | <Options> |
2458 | <OutputPath>../../../../bin/ScriptEngines/</OutputPath> | 2512 | <OutputPath>../../../../bin/</OutputPath> |
2459 | </Options> | 2513 | </Options> |
2460 | </Configuration> | 2514 | </Configuration> |
2461 | <Configuration name="Release"> | 2515 | <Configuration name="Release"> |
2462 | <Options> | 2516 | <Options> |
2463 | <OutputPath>../../../../bin/ScriptEngines/</OutputPath> | 2517 | <OutputPath>../../../../bin/</OutputPath> |
2464 | </Options> | 2518 | </Options> |
2465 | </Configuration> | 2519 | </Configuration> |
2466 | 2520 | ||
@@ -2479,12 +2533,16 @@ | |||
2479 | <Reference name="OpenSim.Region.Interfaces" /> | 2533 | <Reference name="OpenSim.Region.Interfaces" /> |
2480 | <Reference name="OpenSim.Region.Physics.Manager" /> | 2534 | <Reference name="OpenSim.Region.Physics.Manager" /> |
2481 | <Reference name="OpenSim.Framework.Console"/> | 2535 | <Reference name="OpenSim.Framework.Console"/> |
2482 | <Reference name="OpenSim.ApplicationPlugins.ScriptEngine"/> | ||
2483 | <Reference name="Nini.dll" /> | ||
2484 | <Reference name="RAIL.dll"/> | ||
2485 | <Reference name="OpenSim.Framework.Console"/> | ||
2486 | <Reference name="Nini.dll" /> | 2536 | <Reference name="Nini.dll" /> |
2487 | <Reference name="log4net.dll"/> | 2537 | <Reference name="log4net.dll"/> |
2538 | <Reference name="OpenSim.ApplicationPlugins.ScriptEngine"/> | ||
2539 | <Reference name="OpenSim.Region.ScriptEngine.Shared"/> | ||
2540 | <Reference name="OpenSim.ScriptEngine.Components.DotNetEngine.Scheduler"/> | ||
2541 | <Reference name="OpenSim.ScriptEngine.Components.DotNetEngine.Events"/> | ||
2542 | <Reference name="OpenSim.ScriptEngine.Components.DotNetEngine.Commands_OSSL"/> | ||
2543 | <Reference name="OpenSim.ScriptEngine.Components.DotNetEngine.Commands_LSL"/> | ||
2544 | <Reference name="OpenSim.ScriptEngine.Shared"/> | ||
2545 | <Reference name="OpenSim.ScriptEngine.Shared.Script"/> | ||
2488 | 2546 | ||
2489 | <Files> | 2547 | <Files> |
2490 | <Match pattern="*.cs" recurse="true" > | 2548 | <Match pattern="*.cs" recurse="true" > |