Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PTSP/HeuristicLab.Problems.PTSP/3.3/Plugin.cs.frame @ 12317

Last change on this file since 12317 was 12317, checked in by apolidur, 9 years ago

#2221: Fixing PluginDependencies

File size: 996 bytes
Line 
1using HeuristicLab.PluginInfrastructure;
2namespace HeuristicLab.Problems.PTSP {
3    [Plugin("HeuristicLab.Problems.PTSP", "Provides an implementation of the PTSP", "3.3.11.$WCREV$")]
4    [PluginFile("HeuristicLab.Problems.PTSP-3.3.dll", PluginFileType.Assembly)]
5  [PluginDependency("HeuristicLab.Collections", "3.3")]
6  [PluginDependency("HeuristicLab.Common", "3.3")]
7  [PluginDependency("HeuristicLab.Common.Resources", "3.3")]
8  [PluginDependency("HeuristicLab.Core", "3.3")]
9  [PluginDependency("HeuristicLab.Data", "3.3")]
10  [PluginDependency("HeuristicLab.Encodings.PermutationEncoding", "3.3")]
11  [PluginDependency("HeuristicLab.Operators", "3.3")]
12  [PluginDependency("HeuristicLab.Optimization", "3.3")]
13  [PluginDependency("HeuristicLab.Parameters", "3.3")]
14  [PluginDependency("HeuristicLab.Persistence", "3.3")]
15  [PluginDependency("HeuristicLab.Problems.Instances", "3.3")]
16  [PluginDependency("HeuristicLab.Random", "3.3")]
17    public class Plugin : PluginBase {
18    }
19}
Note: See TracBrowser for help on using the repository browser.