Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 18093 was 17184, checked in by swagner, 5 years ago

#2875: Incremented plugin and assembly file versions

File size: 903 bytes
RevLine 
[2754]1using System.Windows.Forms;
2using HeuristicLab.PluginInfrastructure;
3
4namespace HeuristicLab.Persistence.GUI {
5
[17184]6  [Plugin("HeuristicLab.Persistence.GUI", "3.3.16.$WCREV$")]
[2754]7  [PluginFile("HeuristicLab.Persistence.GUI-3.3.dll", PluginFileType.Assembly)]
[16658]8  [PluginDependency("HeuristicLab.Attic", "1.0")]
[3732]9  [PluginDependency("HeuristicLab.Common.Resources", "3.3")]
[2754]10  [PluginDependency("HeuristicLab.Persistence", "3.3")]
11  public class HeuristicLabPersistenceGUIPlugin : PluginBase { }
12
13
[2931]14  [Application("Persistence Configuration", "Configure type mappings of persistence")]
[2754]15  public class HeuristicLabPersistenceGUIApplication : ApplicationBase {
[8818]16    public override void Run(ICommandLineArgument[] args) {
[2754]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.