From 0fec75f2ee9ae8b85cc8660de4b2e793f6ff9d12 Mon Sep 17 00:00:00 2001 From: Alee14 Date: Sat, 12 May 2018 17:28:31 -0400 Subject: Add project files. --- Project Ports/Program.cs | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Project Ports/Program.cs (limited to 'Project Ports/Program.cs') diff --git a/Project Ports/Program.cs b/Project Ports/Program.cs new file mode 100644 index 0000000..c8db6f2 --- /dev/null +++ b/Project Ports/Program.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace Project_Ports +{ + 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