diff options
Diffstat (limited to 'prebuild.xml')
-rw-r--r-- | prebuild.xml | 39 |
1 files changed, 36 insertions, 3 deletions
diff --git a/prebuild.xml b/prebuild.xml index 3f45755..8273b7b 100644 --- a/prebuild.xml +++ b/prebuild.xml | |||
@@ -501,12 +501,13 @@ | |||
501 | <Reference name="OpenSim.Framework"/> | 501 | <Reference name="OpenSim.Framework"/> |
502 | <Reference name="OpenSim.Framework.Console"/> | 502 | <Reference name="OpenSim.Framework.Console"/> |
503 | <Reference name="OpenSim.Region.Physics.Manager"/> | 503 | <Reference name="OpenSim.Region.Physics.Manager"/> |
504 | <Reference name="Ode.NET.dll" /> | 504 | <Reference name="Ode.NET.dll" /> |
505 | <Reference name="nunit.framework.dll" /> | ||
506 | <Reference name="log4net.dll"/> | 505 | <Reference name="log4net.dll"/> |
507 | 506 | ||
508 | <Files> | 507 | <Files> |
509 | <Match pattern="*.cs" recurse="true"/> | 508 | <Match pattern="*.cs" recurse="true"> |
509 | <Exclude name="Tests" pattern="Tests"/> | ||
510 | </Match> | ||
510 | </Files> | 511 | </Files> |
511 | </Project> | 512 | </Project> |
512 | 513 | ||
@@ -3692,6 +3693,38 @@ | |||
3692 | </Files> | 3693 | </Files> |
3693 | </Project> | 3694 | </Project> |
3694 | 3695 | ||
3696 | <!-- | ||
3697 | TODO: this is kind of lame, we basically build a duplicate | ||
3698 | assembly but with tests added in, just because we can't resolve cross-bin-dir-refs. | ||
3699 | --> | ||
3700 | <Project name="OpenSim.Region.Physics.OdePlugin.Tests" path="OpenSim/Region/Physics/OdePlugin" type="Library"> | ||
3701 | <Configuration name="Debug"> | ||
3702 | <Options> | ||
3703 | <OutputPath>../../../../bin/</OutputPath> | ||
3704 | </Options> | ||
3705 | </Configuration> | ||
3706 | <Configuration name="Release"> | ||
3707 | <Options> | ||
3708 | <OutputPath>../../../../bin/</OutputPath> | ||
3709 | </Options> | ||
3710 | </Configuration> | ||
3711 | |||
3712 | <ReferencePath>../../../../bin/</ReferencePath> | ||
3713 | <Reference name="System"/> | ||
3714 | <Reference name="OpenMetaverseTypes.dll"/> | ||
3715 | <Reference name="Nini.dll" /> | ||
3716 | <Reference name="OpenSim.Framework"/> | ||
3717 | <Reference name="OpenSim.Framework.Console"/> | ||
3718 | <Reference name="OpenSim.Region.Physics.Manager"/> | ||
3719 | <Reference name="Ode.NET.dll" /> | ||
3720 | <Reference name="nunit.framework.dll" /> | ||
3721 | <Reference name="log4net.dll"/> | ||
3722 | |||
3723 | <Files> | ||
3724 | <Match pattern="*.cs" recurse="true"/> | ||
3725 | </Files> | ||
3726 | </Project> | ||
3727 | |||
3695 | <Project name="OpenSim.Server.Handlers.Tests" path="OpenSim/Server/Handlers/Tests" type="Library"> | 3728 | <Project name="OpenSim.Server.Handlers.Tests" path="OpenSim/Server/Handlers/Tests" type="Library"> |
3696 | <Configuration name="Debug"> | 3729 | <Configuration name="Debug"> |
3697 | <Options> | 3730 | <Options> |