Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/25/14 13:55:01 (10 years ago)
Author:
jkarder
Message:

#2136: applied some of the changes suggested in comment:11:ticket:2136

  • change namespaces to HeuristicLab.Scripting.*
  • added extra compile button and registered F6 as a shortcut
  • changed the order of the output window and the error list
  • tabs (output window and error list) are selected automatically
  • thrown exceptions are shown using the PluginInfrastructure
  • removed namespace declaration in the script
  • names in the VariableStore are now conform to C# property names
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.HLScript.Views/3.3/Plugin.cs.frame

    r10358 r10506  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2014 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2222using HeuristicLab.PluginInfrastructure;
    2323
    24 namespace HeuristicLab.HLScript.Views {
    25   [Plugin("HeuristicLab.HLScript.Views", "3.3.9.$WCREV$")]
    26   [PluginFile("HeuristicLab.HLScript.Views-3.3.dll", PluginFileType.Assembly)]
     24namespace HeuristicLab.Scripting.Views {
     25  [Plugin("HeuristicLab.Scripting.Views", "3.3.9.$WCREV$")]
     26  [PluginFile("HeuristicLab.Scripting.Views-3.3.dll", PluginFileType.Assembly)]
    2727  [PluginDependency("HeuristicLab.CodeEditor", "3.3")]
    2828  [PluginDependency("HeuristicLab.Collections", "3.3")]
     
    3131  [PluginDependency("HeuristicLab.Core", "3.3")]
    3232  [PluginDependency("HeuristicLab.Core.Views", "3.3")]
    33   [PluginDependency("HeuristicLab.HLScript", "3.3")]
     33  [PluginDependency("HeuristicLab.Scripting", "3.3")]
    3434  [PluginDependency("HeuristicLab.MainForm", "3.3")]
    3535  [PluginDependency("HeuristicLab.MainForm.WindowsForms", "3.3")]
    3636  [PluginDependency("HeuristicLab.Persistence", "3.3")]
    37   public class HeuristicLabHLScriptViewsPlugin : PluginBase {
     37  public class HeuristicLabScriptingViewsPlugin : PluginBase {
    3838  }
    3939}
Note: See TracChangeset for help on using the changeset viewer.