Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.CodeEditor/3.2/HeuristicLabCodeEditorPlugin.cs @ 2659

Last change on this file since 2659 was 2659, checked in by epitzer, 14 years ago

Add new Plugin that provides a code editor with syntax highlighting and code completion (#842)

File size: 484 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.PluginInfrastructure;
6
7namespace HeuristicLab.CodeEditor {
8
9  [Plugin("HeuristicLab.CodeEditor-3.2")]
10  [PluginFile("HeuristicLab.CodeEditor-3.2.dll", PluginFileType.Assembly)]
11  [PluginDependency("HeuristicLab.Common.Resources-3.2")]
12  [PluginDependency("HeuristicLab.SharpDevelop-3.1.1.5327")]
13  public class HeuristicLabCodeEditorPlugin : PluginBase {
14  }
15}
Note: See TracBrowser for help on using the repository browser.