Made MatterControl run as a .net standard app

Moving matter control to a lib and creating a new exe to run it
This commit is contained in:
Lars Brubaker 2018-09-06 16:08:00 -07:00
parent 8b4790e493
commit bed90234e7
485 changed files with 283 additions and 571 deletions

View file

@ -0,0 +1,15 @@
using MatterHackers.Plugins.X3GDriver;
using MatterHackers.SerialPortCommunication.FrostedSerial;
namespace MatterHackers.MatterControl.Plugins.X3GDriver
{
public class X3GFrostedSerialPortFactory : FrostedSerialPortFactory
{
override protected string GetDriverType() => "X3G";
public override IFrostedSerialPort Create(string serialPortName)
{
return new X3GSerialPortWrapper(serialPortName);
}
}
}