diff --git a/HoistingCrane/HoistingCrane/Program.cs b/HoistingCrane/HoistingCrane/Program.cs new file mode 100644 index 0000000..fbb985e --- /dev/null +++ b/HoistingCrane/HoistingCrane/Program.cs @@ -0,0 +1,17 @@ +namespace HoistingCrane +{ + internal static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + // To customize application configuration such as set high DPI settings or default font, + // see https://aka.ms/applicationconfiguration. + ApplicationConfiguration.Initialize(); + Application.Run(new FormHoistingCrane()); + } + } +} \ No newline at end of file