22 lines
551 B
C#
22 lines
551 B
C#
using GenesisCordonelInterface.UI;
|
|
using NLog;
|
|
using System;
|
|
using System.Windows.Forms;
|
|
using Xylem.Common.Utils.Logging;
|
|
using System.IO;
|
|
|
|
namespace GenesisCordonelInterface
|
|
{
|
|
static class Program
|
|
{
|
|
private static readonly ILogger Logger = NLogHelper.CreateOrGetLogger("GenesisCordonelInterface");
|
|
|
|
[STAThread]
|
|
static void Main()
|
|
{
|
|
Application.EnableVisualStyles();
|
|
Application.SetCompatibleTextRenderingDefault(false);
|
|
Application.Run(new MainForm());
|
|
}
|
|
}
|
|
} |