From 2f66dacf8090516265a3b4652200bc4c457c5dd6 Mon Sep 17 00:00:00 2001 From: BuildTools Date: Fri, 24 Mar 2017 23:40:17 -0400 Subject: Add project files. --- AleeOS/Program.cs | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 AleeOS/Program.cs (limited to 'AleeOS/Program.cs') diff --git a/AleeOS/Program.cs b/AleeOS/Program.cs new file mode 100644 index 0000000..93ff13c --- /dev/null +++ b/AleeOS/Program.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace AleeOS +{ + static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new Form1()); + } + } +} -- cgit v1.2.3