aboutsummaryrefslogtreecommitdiffstats
path: root/Projects/LEDNotifier/HotmailNotifierApp/Program.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Projects/LEDNotifier/HotmailNotifierApp/Program.cs')
-rw-r--r--Projects/LEDNotifier/HotmailNotifierApp/Program.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/Projects/LEDNotifier/HotmailNotifierApp/Program.cs b/Projects/LEDNotifier/HotmailNotifierApp/Program.cs
new file mode 100644
index 000000000..1dd229d91
--- /dev/null
+++ b/Projects/LEDNotifier/HotmailNotifierApp/Program.cs
@@ -0,0 +1,20 @@
+using System;
+using System.Collections.Generic;
+using System.Windows.Forms;
+
+namespace TestWinForms
+{
+ static class Program
+ {
+ /// <summary>
+ /// The main entry point for the application.
+ /// </summary>
+ [STAThread]
+ static void Main()
+ {
+ Application.EnableVisualStyles();
+ Application.SetCompatibleTextRenderingDefault(false);
+ Application.Run(new MailNotifier());
+ }
+ }
+}