From 00a491d93733d4625ad329b2ba8237f445364b3f Mon Sep 17 00:00:00 2001 From: Mirta Date: Wed, 30 Dec 2020 16:39:52 +0200 Subject: merge --- .../Scripting/Tango.Scripting.Basic/Project.cs | 259 --------------------- 1 file changed, 259 deletions(-) delete mode 100644 Software/Visual_Studio/Scripting/Tango.Scripting.Basic/Project.cs (limited to 'Software/Visual_Studio/Scripting/Tango.Scripting.Basic/Project.cs') diff --git a/Software/Visual_Studio/Scripting/Tango.Scripting.Basic/Project.cs b/Software/Visual_Studio/Scripting/Tango.Scripting.Basic/Project.cs deleted file mode 100644 index 7500e404f..000000000 --- a/Software/Visual_Studio/Scripting/Tango.Scripting.Basic/Project.cs +++ /dev/null @@ -1,259 +0,0 @@ -using Microsoft.CodeAnalysis.CSharp.Scripting; -using Microsoft.CodeAnalysis.Scripting; -using Newtonsoft.Json; -using System; -using System.Collections.Generic; -using System.Collections.ObjectModel; -using System.Linq; -using System.Reflection; -using System.Text; -using System.Text.RegularExpressions; -using System.Threading; -using System.Threading.Tasks; -using System.Windows.Forms; -using Tango.Core; -using Tango.Core.IO; -using Tango.Scripting.Core; -using System.IO; -using Tango.Core.Helpers; - -namespace Tango.Scripting.Basic -{ - public class Project : ExtendedObject where T : IContext - { - private object _compileLock = new object(); - - public String ID { get; set; } - - private String _name; - public String Name - { - get { return _name; } - set { _name = value; RaisePropertyChangedAuto(); } - } - - private String _description; - public String Description - { - get { return _description; } - set { _description = value; RaisePropertyChangedAuto(); } - } - - private bool _isRunning; - [JsonIgnore] - public bool IsRunning - { - get { return _isRunning; } - set { _isRunning = value; RaisePropertyChangedAuto(); } - } - - private bool _isCompiling; - [JsonIgnore] - public bool IsCompiling - { - get { return _isCompiling; } - set { _isCompiling = value; RaisePropertyChangedAuto(); } - } - - public ApartmentState ApartmentState { get; set; } - - public ObservableCollection ReferenceAssemblies { get; set; } - - public ObservableCollection