Rev | Line | |
---|
[2754] | 1 | using System.Windows.Forms;
|
---|
| 2 | using HeuristicLab.PluginInfrastructure;
|
---|
| 3 |
|
---|
| 4 | namespace 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.