using System; using Exceptionless; namespace Sledgemapper { public static class Program { [STAThread] static void Main() { ExceptionlessClient.Default.Configuration.ServerUrl="https://exceptionless.michelescandura.com"; ExceptionlessClient.Default.Startup("uprV1LocxAlUPPC9oB4eOlt8jGZ5WypMZKdJCsdL"); using (var game = new Sledgemapper()) game.Run(); } } }