Michael Bucari-Tovo 560523b99d Revert "Removed WinFormsDesigner project."
This reverts commit d5e9e4951704b876a9d8f9fef9cae7de684dc7bb.
2021-08-10 18:26:10 -06:00

23 lines
517 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WinFormsDesigner
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}