Adding exceptionless support

This commit is contained in:
Michele 2020-12-11 23:49:10 +00:00
parent 59736aa041
commit d61d207fb8
3 changed files with 8 additions and 1 deletions

View file

@ -1,4 +1,5 @@
using System;
using Exceptionless;
namespace Sledgemapper
{
@ -7,6 +8,8 @@ namespace Sledgemapper
[STAThread]
static void Main()
{
ExceptionlessClient.Default.Configuration.ServerUrl="https://exceptionless.michelescandura.com";
ExceptionlessClient.Default.Startup("uprV1LocxAlUPPC9oB4eOlt8jGZ5WypMZKdJCsdL");
using (var game = new Sledgemapper())
game.Run();
}