diff options
Diffstat (limited to 'prebuild.xml')
-rw-r--r-- | prebuild.xml | 47 |
1 files changed, 20 insertions, 27 deletions
diff --git a/prebuild.xml b/prebuild.xml index 3200131..2cf29db 100644 --- a/prebuild.xml +++ b/prebuild.xml | |||
@@ -1,6 +1,6 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" ?> | 1 | <?xml version="1.0" encoding="utf-8" ?> |
2 | <Prebuild xmlns="http://dnpb.sourceforge.net/schemas/prebuild-1.7.xsd" version="1.7"> | 2 | <Prebuild xmlns="http://dnpb.sourceforge.net/schemas/prebuild-1.7.xsd" version="1.7"> |
3 | <Solution name="OpenSim" activeConfig="Debug" path="./" version="0.5.0-$Rev$"> | 3 | <Solution name="OpenSim" activeConfig="Debug" path="./" version="0.5.0-$Rev: 8318 $"> |
4 | <Configuration name="Debug"> | 4 | <Configuration name="Debug"> |
5 | <Options> | 5 | <Options> |
6 | <CompilerDefines>TRACE;DEBUG</CompilerDefines> | 6 | <CompilerDefines>TRACE;DEBUG</CompilerDefines> |
@@ -1848,7 +1848,9 @@ | |||
1848 | <Reference name="log4net.dll"/> | 1848 | <Reference name="log4net.dll"/> |
1849 | 1849 | ||
1850 | <Files> | 1850 | <Files> |
1851 | <Match pattern="*.cs" recurse="true"/> | 1851 | <Match pattern="*.cs" recurse="true"> |
1852 | <Exclude name="Tests" pattern="Tests" /> | ||
1853 | </Match> | ||
1852 | </Files> | 1854 | </Files> |
1853 | </Project> | 1855 | </Project> |
1854 | 1856 | ||
@@ -2750,19 +2752,19 @@ | |||
2750 | </Files> | 2752 | </Files> |
2751 | </Project> | 2753 | </Project> |
2752 | 2754 | ||
2753 | <Project name="OpenSim.Region.ScriptEngine.Shared.Tests" path="OpenSim/Region/ScriptEngine/Shared/Tests" type="Library"> | 2755 | <Project name="OpenSim.Region.ScriptEngine.Tests" path="OpenSim/Region/ScriptEngine" type="Library"> |
2754 | <Configuration name="Debug"> | 2756 | <Configuration name="Debug"> |
2755 | <Options> | 2757 | <Options> |
2756 | <OutputPath>../../../../../bin/</OutputPath> | 2758 | <OutputPath>../../../bin/</OutputPath> |
2757 | </Options> | 2759 | </Options> |
2758 | </Configuration> | 2760 | </Configuration> |
2759 | <Configuration name="Release"> | 2761 | <Configuration name="Release"> |
2760 | <Options> | 2762 | <Options> |
2761 | <OutputPath>../../../../../bin/</OutputPath> | 2763 | <OutputPath>../../../bin/</OutputPath> |
2762 | </Options> | 2764 | </Options> |
2763 | </Configuration> | 2765 | </Configuration> |
2764 | 2766 | ||
2765 | <ReferencePath>../../../../../bin/</ReferencePath> | 2767 | <ReferencePath>../../../bin/</ReferencePath> |
2766 | <Reference name="System" localCopy="false"/> | 2768 | <Reference name="System" localCopy="false"/> |
2767 | <Reference name="OpenSim.Framework"/> | 2769 | <Reference name="OpenSim.Framework"/> |
2768 | <Reference name="OpenSim.Region.Framework"/> | 2770 | <Reference name="OpenSim.Region.Framework"/> |
@@ -2773,30 +2775,21 @@ | |||
2773 | <Reference name="nunit.framework.dll" /> | 2775 | <Reference name="nunit.framework.dll" /> |
2774 | <Reference name="Nini.dll" /> | 2776 | <Reference name="Nini.dll" /> |
2775 | <Reference name="OpenMetaverseTypes.dll"/> | 2777 | <Reference name="OpenMetaverseTypes.dll"/> |
2776 | <Files> | ||
2777 | <Match pattern="*.cs" recurse="false"/> | ||
2778 | </Files> | ||
2779 | </Project> | ||
2780 | |||
2781 | <Project name="OpenSim.Region.ScriptEngine.Shared.CodeTools.Tests" path="OpenSim/Region/ScriptEngine/Shared/CodeTools/Tests" type="Library"> | ||
2782 | <Configuration name="Debug"> | ||
2783 | <Options> | ||
2784 | <OutputPath>../../../../../../bin/</OutputPath> | ||
2785 | </Options> | ||
2786 | </Configuration> | ||
2787 | <Configuration name="Release"> | ||
2788 | <Options> | ||
2789 | <OutputPath>../../../../../../bin/</OutputPath> | ||
2790 | </Options> | ||
2791 | </Configuration> | ||
2792 | |||
2793 | <ReferencePath>../../../../../../bin/</ReferencePath> | ||
2794 | <Reference name="System" localCopy="false"/> | ||
2795 | <Reference name="OpenSim.Region.ScriptEngine.Shared.CodeTools"/> | 2778 | <Reference name="OpenSim.Region.ScriptEngine.Shared.CodeTools"/> |
2796 | <Reference name="nunit.framework.dll" /> | 2779 | <Reference name="OpenSim.Region.ScriptEngine.Shared"/> |
2797 | <Reference name="Tools.dll" /> | 2780 | <Reference name="Tools.dll" /> |
2781 | |||
2782 | <!-- | ||
2783 | TODO: this is kind of lame, we basically build a duplicate | ||
2784 | assembly but with tests added in, just so that we don't | ||
2785 | need to hard code in a bunch of Test directories here. If | ||
2786 | pattern="Tests/*.cs" worked, we wouldn't need this. | ||
2787 | --> | ||
2798 | <Files> | 2788 | <Files> |
2799 | <Match pattern="*.cs" recurse="false"/> | 2789 | <!-- SADLY the way this works means you need to keep adding these paths --> |
2790 | <Match path="Shared/Tests" pattern="*.cs" recurse="true" /> | ||
2791 | <Match path="Shared/CodeTools/Tests" pattern="*.cs" recurse="true" /> | ||
2792 | <Match path="XEngine/Tests" pattern="*.cs" recurse="true" /> | ||
2800 | </Files> | 2793 | </Files> |
2801 | </Project> | 2794 | </Project> |
2802 | 2795 | ||