mattercontrol/MatterControl.cs
Lars Brubaker bed90234e7 Made MatterControl run as a .net standard app
Moving matter control to a lib and creating a new exe to run it
2018-09-06 16:09:58 -07:00

17 lines
281 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MatterControl
{
class Program
{
[STAThread]
static void Main(string[] args)
{
MatterHackers.MatterControl.MatterControlLib.Main();
}
}
}