Last change
on this file since 2297 was
1534,
checked in by swagner, 16 years ago
|
Updated main solution file and fixed minor errors in names and version numbers of projects (#576)
|
File size:
742 bytes
|
Line | |
---|
1 | using System.Windows.Forms;
|
---|
2 | using HeuristicLab.PluginInfrastructure;
|
---|
3 |
|
---|
4 | namespace HeuristicLab.Persistence.GUI {
|
---|
5 |
|
---|
6 | [ClassInfo(Name = "HeuristicLab.Persistence.GUI-3.3")]
|
---|
7 | [PluginFile(Filename = "HeuristicLab.Persistence.GUI-3.3.dll", Filetype = PluginFileType.Assembly)]
|
---|
8 | [Dependency(Dependency = "HeuristicLab.Persistence-3.3")]
|
---|
9 | public class HeuristicLabPersistencePlugin : PluginBase { }
|
---|
10 |
|
---|
11 |
|
---|
12 | [ClassInfo(Name = "Persistence Configuration")]
|
---|
13 | public class HeuristicLabPersistenceApplication : ApplicationBase {
|
---|
14 | public override void Run() {
|
---|
15 | Application.EnableVisualStyles();
|
---|
16 | Application.SetCompatibleTextRenderingDefault(false);
|
---|
17 | Application.Run(new PersistenceConfigurationForm());
|
---|
18 | }
|
---|
19 | }
|
---|
20 |
|
---|
21 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.