Changeset 14711 for branches/PersistenceOverhaul/HeuristicLab.Scripting/3.3
- Timestamp:
- 03/03/17 11:41:43 (8 years ago)
- Location:
- branches/PersistenceOverhaul/HeuristicLab.Scripting/3.3
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceOverhaul/HeuristicLab.Scripting/3.3/ExecutableScript.cs
r13368 r14711 28 28 namespace HeuristicLab.Scripting { 29 29 [Item("Executable Script", "An executable script.")] 30 [Storable Class("7D7C1BAB-6E99-49C2-AE2E-23265E128A00")]30 [StorableType("7D7C1BAB-6E99-49C2-AE2E-23265E128A00")] 31 31 public abstract class ExecutableScript : Script { 32 32 private Thread scriptThread; -
branches/PersistenceOverhaul/HeuristicLab.Scripting/3.3/Script.cs
r13368 r14711 36 36 37 37 namespace HeuristicLab.Scripting { 38 [Storable Class("1D217054-CDCC-4AF6-AF75-91F24E73D78D")]38 [StorableType("1D217054-CDCC-4AF6-AF75-91F24E73D78D")] 39 39 public abstract class Script : NamedItem, IProgrammableItem { 40 40 #region Fields & Properties -
branches/PersistenceOverhaul/HeuristicLab.Scripting/3.3/Scripts/CSharp/CSharpScript.cs
r13368 r14711 30 30 [Item("C# Script", "An empty C# script.")] 31 31 [Creatable(CreatableAttribute.Categories.Scripts, Priority = 100)] 32 [Storable Class("9B573A9A-F81D-433E-B39E-EA19F8FDB28E")]32 [StorableType("9B573A9A-F81D-433E-B39E-EA19F8FDB28E")] 33 33 public class CSharpScript : ExecutableScript, IStorableContent { 34 34 #region Fields & Properties -
branches/PersistenceOverhaul/HeuristicLab.Scripting/3.3/Scripts/Templates/ScriptTemplates.resx
r11833 r14711 119 119 </resheader> 120 120 <assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /> 121 <data name="CSharpScriptTemplate" type="System.Resources.ResXFileRef, System.Windows.Forms">121 <data name="CSharpScriptTemplate" memberSelection="System.Resources.ResXFileRef, System.Windows.Forms"> 122 122 <value>CSharpScriptTemplate.cs;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8</value> 123 123 </data> -
branches/PersistenceOverhaul/HeuristicLab.Scripting/3.3/VariableStore.cs
r13368 r14711 33 33 namespace HeuristicLab.Scripting { 34 34 [Item("VariableStore", "Represents a variable store.")] 35 [Storable Class("1BD425CF-1E69-45B1-AC3C-E6B290F0B000")]35 [StorableType("1BD425CF-1E69-45B1-AC3C-E6B290F0B000")] 36 36 public class VariableStore : ObservableDictionary<string, object>, IItem { 37 37 #region Properties
Note: See TracChangeset
for help on using the changeset viewer.