1
0
mirror of synced 2025-01-31 20:25:23 +01:00

26 lines
674 B
C#
Raw Normal View History

2018-11-11 20:01:21 -05:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
2018-11-17 17:33:00 -05:00
using Microsoft.VisualBasic;
2018-11-11 20:01:21 -05:00
namespace Switch_Toolbox
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
MainForm.executableDir = System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetEntryAssembly().Location);
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MainForm());
}
}
}