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 { public interface IProject : ISolutionItem { String FilePath { get; set; } String WorkingFolder { get; } ObservableCollection Items { get; set; } Task Build(); Task Run(); } }