Add project files.

This commit is contained in:
wribeiro
2026-03-16 19:32:16 +00:00
parent da37c5ecbf
commit 29560bfa4a
10 changed files with 1565 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
using System;
using System.Windows.Forms;
namespace OutlookCaseHelper
{
internal static class Program
{
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}