* Refactored out exe bit out of Grid Server for great justice

This commit is contained in:
lbsa71
2008-03-12 10:13:19 +00:00
parent f1b8712da3
commit 3f45cfc591
2 changed files with 44 additions and 54 deletions

View File

@@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
using System.Text;
using OpenSim.Framework.Console;
namespace OpenSim.Grid.GridServer
{
public class Program
{
[STAThread]
public static void Main(string[] args)
{
log4net.Config.XmlConfigurator.Configure();
OpenGrid_Main app = new OpenGrid_Main();
if (args.Length > 0 && args[0] == "-setuponly")
{
app.Config();
}
else
{
app.Startup();
app.Work();
}
}
}
}