This commit is contained in:
2020-01-22 17:32:13 +00:00
parent 27b3ce2ff2
commit b0fe9a16be
72 changed files with 20072 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace ConvertLocalAlarms
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new frmConvertLocalAlarms());
}
}
}