17 lines
347 B
C#
17 lines
347 B
C#
using System;
|
|
using System.Windows.Forms;
|
|
|
|
namespace AxCopilot.Installer.Offline
|
|
{
|
|
static class Program
|
|
{
|
|
[STAThread]
|
|
static void Main()
|
|
{
|
|
Application.EnableVisualStyles();
|
|
Application.SetCompatibleTextRenderingDefault(false);
|
|
Application.Run(new SetupForm());
|
|
}
|
|
}
|
|
}
|