Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/HeuristicLab.Persistence.GUI/3.3/Plugin.cs.frame @ 16667

Last change on this file since 16667 was 16658, checked in by gkronber, 5 years ago

#2520: created a extlibs wrapper plugin for the HEAL.Attic nuget package (and updated to 1.0.0-pre4)

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