Rename HotmailNotifier project files to LEDNotifier.

This commit is contained in:
Dean Camera 2009-12-18 05:25:51 +00:00
parent 3b3ea167f0
commit 47384e3c50
15 changed files with 1 additions and 1 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());
}
}
}