Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.BioBoost/HeuristicLab.Problems.BioBoost/3.3/Plugin.cs.frame @ 13069

Last change on this file since 13069 was 13069, checked in by gkronber, 9 years ago

#2499: imported source code for HeuristicLab.BioBoost from private repository with some changes

File size: 1.1 KB
Line 
1using HeuristicLab.PluginInfrastructure;
2
3namespace HeuristicLab.BioBoost {
4  [Plugin("HeuristicLab.Problems.BioBoost", "Plugin for project BioBoost for logistic network optimization", "3.3.12.$WCREV$")]
5  [PluginFile("HeuristicLab.Problems.BioBoost-3.3.dll", PluginFileType.Assembly)]
6  // TODO: plugin files for nuget packages?
7  [PluginDependency("HeuristicLab.Analysis", "3.3")]
8  [PluginDependency("HeuristicLab.Collections", "3.3")]
9  [PluginDependency("HeuristicLab.Common", "3.3")]
10  [PluginDependency("HeuristicLab.Common.Resources", "3.3")]
11  [PluginDependency("HeuristicLab.Core", "3.3")]
12  [PluginDependency("HeuristicLab.Data", "3.3")]
13  [PluginDependency("HeuristicLab.Encodings.IntegerVectorEncoding", "3.3")]
14  [PluginDependency("HeuristicLab.Encodings.RealVectorEncoding", "3.3")]
15  [PluginDependency("HeuristicLab.Operators", "3.3")]
16  [PluginDependency("HeuristicLab.Optimization", "3.3")]
17  [PluginDependency("HeuristicLab.Parameters", "3.3")]
18  [PluginDependency("HeuristicLab.Persistence", "3.3")]
19  [PluginDependency("HeuristicLab.Random", "3.3")]
20  public class Plugin : PluginBase {}
21}
Note: See TracBrowser for help on using the repository browser.