Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Persistence.GUI/3.3/HeuristicLabPersistenceGUIPlugin.cs.frame @ 6099

Last change on this file since 6099 was 6099, checked in by mkommend, 13 years ago

#1461: Updated plugin and assembly file versions.

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