Files
ExportDXF/ExportDXF/Program.cs
2019-03-08 07:48:53 -05:00

19 lines
452 B
C#

using System;
using System.Windows.Forms;
namespace ExportDXF
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
private static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Forms.MainForm());
}
}
}