Renamed CutToLength to CutList

This commit is contained in:
aj
2021-10-04 19:12:37 -04:00
parent 44f3cbfa81
commit 5f3d95a4c9
27 changed files with 30 additions and 28 deletions
+22
View File
@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace CutList
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Forms.MainForm());
}
}
}