aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-10-09 21:43:43 +0000
committerJustin Clarke Casey2008-10-09 21:43:43 +0000
commit7bdfc165358df52a8f3ee3aa78920399c695723c (patch)
tree4b427bbb6555d29becc41c310594a4e07fc2b759
parent* Fix broken build on Windows (repeat to self: must remember that .net on win... (diff)
downloadopensim-SC_OLD-7bdfc165358df52a8f3ee3aa78920399c695723c.zip
opensim-SC_OLD-7bdfc165358df52a8f3ee3aa78920399c695723c.tar.gz
opensim-SC_OLD-7bdfc165358df52a8f3ee3aa78920399c695723c.tar.bz2
opensim-SC_OLD-7bdfc165358df52a8f3ee3aa78920399c695723c.tar.xz
* fix windows build break - it helps if one actually puts in using statements and spells dlls correctly
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs4
-rw-r--r--prebuild.xml2
2 files changed, 4 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs b/OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs
index c821ca2..22a8f5a 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs
@@ -25,8 +25,10 @@
25 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */ 26 */
27 27
28using System; 28using System.Net;
29using NUnit.Framework; 29using NUnit.Framework;
30using OpenSim.Framework;
31using OpenSim.Framework.Communications;
30using OpenSim.Region.ClientStack; 32using OpenSim.Region.ClientStack;
31using OpenSim.Region.ClientStack.LindenUDP; 33using OpenSim.Region.ClientStack.LindenUDP;
32 34
diff --git a/prebuild.xml b/prebuild.xml
index 7a21f09..36fbd4a 100644
--- a/prebuild.xml
+++ b/prebuild.xml
@@ -994,7 +994,7 @@
994 <ReferencePath>../../../../../bin/</ReferencePath> 994 <ReferencePath>../../../../../bin/</ReferencePath>
995 <Reference name="System.Net"/> 995 <Reference name="System.Net"/>
996 <Reference name="OpenSim.Framework"/> 996 <Reference name="OpenSim.Framework"/>
997 <Reference name="OpenSim.Framework.Commmunications"/> 997 <Reference name="OpenSim.Framework.Communications"/>
998 <Reference name="OpenSim.Region.ClientStack"/> 998 <Reference name="OpenSim.Region.ClientStack"/>
999 <Reference name="OpenSim.Region.ClientStack.LindenUDP"/> 999 <Reference name="OpenSim.Region.ClientStack.LindenUDP"/>
1000 <Reference name="nunit.framework.dll" /> 1000 <Reference name="nunit.framework.dll" />