Files
kiwistation/tools/UnstandardnessTestForDM/UnstandardnessTestForDM/Program.cs
T
Kyle Spier-Swenson 5668a89da4 Revert "Remove three unused tools" (#18602)
Restore tools as they are used
2016-06-17 09:38:38 +12:00

22 lines
515 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace UnstandardnessTestForDM
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}