Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive/3.4/HeuristicLabClientsHivePlugin.cs.frame @ 6033

Last change on this file since 6033 was 6033, checked in by cneumuel, 13 years ago

#1233

  • created baseclass for jobs (ItemJob) which derives OperatorJobs and EngineJobs
  • created special view for OptimizerJobs which derives from a more general view
  • removed logic from domain class HiveExperiment and moved it into RefreshableHiveExperiment
  • improved ItemTreeView
  • corrected plugin dependencies
  • fixed bug in database trigger when deleting HiveExperiments
  • added delete cascade for Plugin and PluginData
  • lots of fixes
File size: 877 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.PluginInfrastructure;
6
7namespace HeuristicLab.Clients.Hive {
8  [Plugin("HeuristicLab.Clients.Hive", "3.4.0.$WCREV$")]
9  [PluginFile("HeuristicLab.Clients.Hive-3.4.dll", PluginFileType.Assembly)]
10  [PluginDependency("HeuristicLab.Clients.Common", "3.3")]
11  [PluginDependency("HeuristicLab.Collections", "3.3")]
12  [PluginDependency("HeuristicLab.Common", "3.3")]
13  [PluginDependency("HeuristicLab.Common.Resources", "3.3")]
14  [PluginDependency("HeuristicLab.Core", "3.3")]
15  [PluginDependency("HeuristicLab.Data", "3.3")]
16  [PluginDependency("HeuristicLab.Hive", "3.4")]
17  [PluginDependency("HeuristicLab.Optimization", "3.3")]
18  [PluginDependency("HeuristicLab.Persistence", "3.3")]
19  public class HeuristicLabClientsHivePlugin : PluginBase {
20  }
21}
Note: See TracBrowser for help on using the repository browser.