diff --git a/OpenSim/Framework/Console/RemoteConsole.cs b/OpenSim/Framework/Console/RemoteConsole.cs
index f254300697..71f075ee99 100644
--- a/OpenSim/Framework/Console/RemoteConsole.cs
+++ b/OpenSim/Framework/Console/RemoteConsole.cs
@@ -31,6 +31,8 @@ using System.Diagnostics;
using System.Reflection;
using System.Text;
using System.Threading;
+using Nini.Config;
+using OpenSim.Framework.Servers.Interfaces;
using log4net;
namespace OpenSim.Framework.Console
@@ -41,10 +43,23 @@ namespace OpenSim.Framework.Console
{
private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
+ private IHttpServer m_Server = null;
+ private IConfigSource m_Config = null;
+
public RemoteConsole(string defaultPrompt) : base(defaultPrompt)
{
}
+ public void ReadConfig(IConfigSource config)
+ {
+ m_Config = config;
+ }
+
+ public void SetServer(IHttpServer server)
+ {
+ m_Server = server;
+ }
+
public override void Output(string text)
{
}
diff --git a/prebuild.xml b/prebuild.xml
index 2f0b27b02b..b2f695ae9d 100644
--- a/prebuild.xml
+++ b/prebuild.xml
@@ -55,26 +55,6 @@
-->
-
-
-
- ../../../bin/
-
-
-
-
- ../../../bin/
-
-
-
- ../../../bin/
-
-
-
-
-
-
-
@@ -350,6 +330,28 @@
+
+
+
+ ../../../bin/
+
+
+
+
+ ../../../bin/
+
+
+
+ ../../../bin/
+
+
+
+
+
+
+
+
+