Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2875: Incremented plugin and assembly file versions

File size: 903 bytes
Line 
1using System.Windows.Forms;
2using HeuristicLab.PluginInfrastructure;
3
4namespace HeuristicLab.Persistence.GUI {
5
6  [Plugin("HeuristicLab.Persistence.GUI", "3.3.16.$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.