Renamed HotmailNotifier project to LEDNotifier.

This commit is contained in:
Dean Camera 2009-12-18 05:22:57 +00:00
parent 3d6508c9b9
commit 3b3ea167f0
22 changed files with 3 additions and 3 deletions

View file

@ -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());
}
}
}