Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Persistence Test/HeuristicLab.Persistence.GUI/3.3/HeuristicLabPersistenceGUIPlugin.cs @ 3703

Last change on this file since 3703 was 2744, checked in by epitzer, 15 years ago

update to new PluginInfrastructure (#802)

File size: 704 bytes
Line 
1using System.Windows.Forms;
2using HeuristicLab.PluginInfrastructure;
3
4namespace HeuristicLab.Persistence.GUI {
5
6  [Plugin("HeuristicLab.Persistence.GUI-3.3")]
7  [PluginFile("HeuristicLab.Persistence.GUI-3.3.dll", PluginFileType.Assembly)]
8  [PluginDependency("HeuristicLab.Persistence-3.3")]
9  public class HeuristicLabPersistenceGUIPlugin : PluginBase { }
10
11
12  [Application("Persistence Configuration")]
13  public class HeuristicLabPersistenceGUIApplication : ApplicationBase {
14    public override void Run() {
15      Application.EnableVisualStyles();
16      Application.SetCompatibleTextRenderingDefault(false);
17      Application.Run(new PersistenceConfigurationForm());
18    }
19  }
20
21}
Note: See TracBrowser for help on using the repository browser.