From df318093a899583fd434a451d51e0618fe69d96b Mon Sep 17 00:00:00 2001 From: Michal Zimniewicz Date: Wed, 28 Jan 2015 10:49:16 +0100 Subject: initial commit with not released version 1.0.4 --- Aktywator/Program.cs | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Aktywator/Program.cs (limited to 'Aktywator/Program.cs') diff --git a/Aktywator/Program.cs b/Aktywator/Program.cs new file mode 100644 index 0000000..19254ef --- /dev/null +++ b/Aktywator/Program.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.Windows.Forms; + +namespace Aktywator +{ + static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new MainForm()); + } + } +} -- cgit v1.2.3