2026-04-09 14:41:29 +00:00
|
|
|
|
using GenesisCordonelInterface.UI;
|
2026-04-09 08:11:02 +00:00
|
|
|
|
using NLog;
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
|
using Xylem.Common.Utils.Logging;
|
|
|
|
|
|
using System.IO;
|
|
|
|
|
|
|
2026-04-09 14:41:29 +00:00
|
|
|
|
namespace GenesisCordonelInterface
|
2026-04-09 08:11:02 +00:00
|
|
|
|
{
|
|
|
|
|
|
static class Program
|
|
|
|
|
|
{
|
2026-04-09 14:41:29 +00:00
|
|
|
|
private static readonly ILogger Logger = NLogHelper.CreateOrGetLogger("GenesisCordonelInterface");
|
2026-04-09 08:11:02 +00:00
|
|
|
|
|
|
|
|
|
|
[STAThread]
|
|
|
|
|
|
static void Main()
|
|
|
|
|
|
{
|
|
|
|
|
|
Application.EnableVisualStyles();
|
|
|
|
|
|
Application.SetCompatibleTextRenderingDefault(false);
|
|
|
|
|
|
Application.Run(new MainForm());
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|