Last change
on this file since 5182 was
4865,
checked in by abeham, 14 years ago
|
#1271
- Updated all plugin versions and AssemblyFileVersions to 3.3.2
- HeuristicLab.CodeEditor updated AssemblyVersion from 3.2 to 3.3
- HeuristicLab.Common.Resources updated AssemblyVersion from 3.2 to 3.3
- HeuristicLab.Tracing updated AssemblyVersion from 3.2 to 3.3
|
File size:
824 bytes
|
Rev | Line | |
---|
[2754] | 1 | using System.Windows.Forms;
|
---|
| 2 | using HeuristicLab.PluginInfrastructure;
|
---|
| 3 |
|
---|
| 4 | namespace HeuristicLab.Persistence.GUI {
|
---|
| 5 |
|
---|
[4865] | 6 | [Plugin("HeuristicLab.Persistence.GUI", "3.3.2.$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 {
|
---|
| 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.