Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 13253 was 9462, checked in by swagner, 11 years ago

Updated copyright year and incremented version of plugins, applications and assembly files (#1889)

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