using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Media.Imaging; namespace Tango.Scripting.IDE.Projects { public class StubProject : CSharpProject { public override BitmapSource Image => GetImage("Images/StubProject.png"); public override Task Build() { throw new NotImplementedException(); } public override Task Run() { throw new NotImplementedException(); } } }