From 9269307b901e5548a6d9c5b687051b58363643bb Mon Sep 17 00:00:00 2001 From: Alee14 Date: Mon, 8 May 2017 20:36:19 -0400 Subject: Add project files. --- AleeBrowser/Program.cs | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 AleeBrowser/Program.cs (limited to 'AleeBrowser/Program.cs') diff --git a/AleeBrowser/Program.cs b/AleeBrowser/Program.cs new file mode 100644 index 0000000..ddab007 --- /dev/null +++ b/AleeBrowser/Program.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace AleeBrowser +{ + 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