Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2635_HeuristicLab.OSGAEvaluator/HeuristicLab.OSGAEvaluator/Plugin.cs.frame @ 17842

Last change on this file since 17842 was 16818, checked in by bburlacu, 5 years ago

#2635: Update solution to .net framework version 4.6.1, switch to new persistence, add plugin frame file and prebuild event.

File size: 1.1 KB
Line 
1using HeuristicLab.PluginInfrastructure;
2
3namespace HeuristicLab.OSGAEvaluator {
4  [Plugin("HeuristicLab.OSGAEvaluator", "OSGA Evaluator", "3.3.13.0")]
5  [PluginFile("HeuristicLab.OSGAEvaluator.dll", PluginFileType.Assembly)]
6  [PluginDependency("HeuristicLab.Attic", "1.0")]
7  [PluginDependency("HeuristicLab.Analysis", "3.3")]
8  [PluginDependency("HeuristicLab.Collections", "3.3")]
9  [PluginDependency("HeuristicLab.Common", "3.3")]
10  [PluginDependency("HeuristicLab.Core", "3.3")]
11  [PluginDependency("HeuristicLab.Data", "3.3")]
12  [PluginDependency("HeuristicLab.Encodings.SymbolicExpressionTreeEncoding", "3.3")]
13  [PluginDependency("HeuristicLab.Operators", "3.3")]
14  [PluginDependency("HeuristicLab.Optimization", "3.3")]
15  [PluginDependency("HeuristicLab.Parameters", "3.3")]
16  [PluginDependency("HeuristicLab.Persistence", "3.3")]
17  [PluginDependency("HeuristicLab.Problems.DataAnalysis", "3.3")]
18  [PluginDependency("HeuristicLab.Problems.DataAnalysis.Symbolic", "3.3")]
19  [PluginDependency("HeuristicLab.Problems.DataAnalysis.Symbolic.Regression", "3.3")]
20  public class Plugin : PluginBase {
21  }
22}
Note: See TracBrowser for help on using the repository browser.