Files
libremetaverse/applications/SLProxy/SLProxyMain.cs
John Hurliman a21f72cea2 * Fixed binary output paths for SLProxy in VS2005 project file
* Pointed README.txt for SLProxy at the wiki to avoid syncing two copies of the docs
* Minor formatting cleanups

git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@1042 52acb1d6-8a22-11de-b505-999d5b087335
2007-03-09 05:11:32 +00:00

12 lines
210 B
C#

using System;
using System.Reflection;
using SLProxy;
class ProxyMain
{
public static void Main(string[] args)
{
ProxyFrame p = new ProxyFrame(args);
p.proxy.Start();
}
}