Changeset 12708 for stable/HeuristicLab.Scripting/3.3/Scripts
- Timestamp:
- 07/10/15 12:11:55 (9 years ago)
- Location:
- stable
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 12305,12393,12397-12401,12504,12506,12512,12622,12649,12664
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Scripting/3.3/Scripts/CSharp/CSharpScript.cs
r12009 r12708 30 30 namespace HeuristicLab.Scripting { 31 31 [Item("C# Script", "An empty C# script.")] 32 [Creatable( "Scripts")]32 [Creatable(CreatableAttribute.Categories.Scripts, Priority = 100)] 33 33 [StorableClass] 34 34 public class CSharpScript : Script, IStorableContent { … … 102 102 OnScriptExecutionStarted(); 103 103 compiledScript.Execute(VariableStore); 104 } catch (Exception e) { 104 } 105 catch (Exception e) { 105 106 ex = e; 106 } finally { 107 } 108 finally { 107 109 scriptThread = null; 108 110 OnScriptExecutionFinished(ex);
Note: See TracChangeset
for help on using the changeset viewer.