Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Tools/HeuristicLab.HiveJobDownloader/HeuristicLab.HiveJobDownloader/Plugin.cs @ 10031

Last change on this file since 10031 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: 673 bytes
Line 
1using HeuristicLab.PluginInfrastructure;
2using System.Windows.Forms;
3
4namespace HeuristicLab.HiveJobDownloader {
5  [Plugin("HeuristicLab.HiveJobDownloader", "1.0.0.0")]
6  [PluginFile("HeuristicLab.HiveJobDownloader.dll", PluginFileType.Assembly)]
7  public class JobDownloaderPlugin:PluginBase { }
8
9  [Application("Job Downloader","Downloads Job")]
10  public class HeuristicLabHiveJobDownloaderGUIApplication : ApplicationBase {
11    public override void Run(ICommandLineArgument[] args) {
12      Application.EnableVisualStyles();
13      Application.SetCompatibleTextRenderingDefault(false);
14      Application.Run(new HiveJobDownloaderForm());
15    }
16
17  }
18}
Note: See TracBrowser for help on using the repository browser.