Added CodeWalker.ErrorReport standalone tool

This commit is contained in:
dexyfex
2018-06-07 13:40:06 +10:00
Unverified
parent 0b6432ceff
commit f00ff33878
13 changed files with 939 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace CodeWalker.ErrorReport
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new ReportForm());
}
}
}