Files
OutlookCaseHelper/OutlookCaseHelper/Program.cs
T
wellington 54070e6513 Added button to reload and view rules.
Also added a function to run the rules on demand
2026-03-20 21:09:50 +00:00

20 lines
419 B
C#

using System;
using System.Windows.Forms;
namespace OutlookCaseHelper
{
internal static class Program
{
[STAThread]
static void Main()
{
try
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
catch { }
}
}
}