From 3b3ea167f01d24cddc2b59453a000969a42d2234 Mon Sep 17 00:00:00 2001 From: Dean Camera Date: Fri, 18 Dec 2009 05:22:57 +0000 Subject: Renamed HotmailNotifier project to LEDNotifier. --- Projects/LEDNotifier/WindowsApp/Program.cs | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Projects/LEDNotifier/WindowsApp/Program.cs (limited to 'Projects/LEDNotifier/WindowsApp/Program.cs') diff --git a/Projects/LEDNotifier/WindowsApp/Program.cs b/Projects/LEDNotifier/WindowsApp/Program.cs new file mode 100644 index 000000000..1dd229d91 --- /dev/null +++ b/Projects/LEDNotifier/WindowsApp/Program.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.Windows.Forms; + +namespace TestWinForms +{ + static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new MailNotifier()); + } + } +} -- cgit v1.2.3