* Removed the ThreadPool checks, it's a lost cause on Mono right now * Moved ObjectManager RequestAllObjects and AlwaysDecode to the Settings class as ALWAYS_REQUEST_OBJECTS and ALWAYS_DECODE_OBJECTS * TestClient uses the new Settings variables for object management * Increased the CAPS timeout, we need to get the initial connection async quickly * Added a post-build step for openjpegnet MSVC project to copy openjpeg.dll to the bin/ directory git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@1090 52acb1d6-8a22-11de-b505-999d5b087335
20 lines
486 B
C#
20 lines
486 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Windows.Forms;
|
|
|
|
namespace Baker
|
|
{
|
|
static class Baker
|
|
{
|
|
/// <summary>
|
|
/// The main entry point for the application.
|
|
/// </summary>
|
|
[STAThread]
|
|
static void Main(string[] args)
|
|
{
|
|
Application.EnableVisualStyles();
|
|
Application.SetCompatibleTextRenderingDefault(false);
|
|
Application.Run(new frmBaker());
|
|
}
|
|
}
|
|
} |