OWtrack/OWTrack/Program.cs

23 lines
538 B
C#
Raw Normal View History

2018-07-13 03:24:05 +02:00
using System;
using System.Windows.Forms;
2018-08-16 07:34:30 +02:00
using System.Deployment.Application;
2018-07-13 03:24:05 +02:00
namespace OWTrack
{
static class Program
2018-08-16 07:34:30 +02:00
{
2018-07-13 03:24:05 +02:00
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
2018-09-08 13:33:07 +02:00
Application.Run(new MainForm());
2018-07-13 03:24:05 +02:00
}
2018-12-10 09:06:32 +01:00
public static string Version { get; } = "1.4.3";
2018-07-13 03:24:05 +02:00
}
}