Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Tools/HeuristicLab.HiveJobUploader/HeuristicLab.HiveJobUploader/Plugin.cs @ 12170

Last change on this file since 12170 was 9234, checked in by ascheibe, 11 years ago

#2017 added tools that eyob worked on:

  • HL build center (HeuristicLab.Subversion)
  • a subwcrev replacement
  • 2 own HL apps for up- and downloading Hive jobs from HL files
File size: 661 bytes
Line 
1using HeuristicLab.PluginInfrastructure;
2using System.Windows.Forms;
3
4namespace HeuristicLab.HiveJobUploader {
5  [Plugin("HeuristicLab.HiveJobUploader", "1.0.0.0")]
6  [PluginFile("HeuristicLab.HiveJobUploader.dll", PluginFileType.Assembly)]
7  public class JobUploaderPlugin : PluginBase {
8  }
9
10  [Application("Job Uploader", "Uploads Job")]
11  public class HeuristicLabHiveJobUploaderGUIApplication : ApplicationBase {
12    public override void Run(ICommandLineArgument[] args) {
13      Application.EnableVisualStyles();
14      Application.SetCompatibleTextRenderingDefault(false);
15      Application.Run(new HiveJobUploaderForm());
16    }
17  }
18}
Note: See TracBrowser for help on using the repository browser.