Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2924_DotNetCoreMigration/HeuristicLab.DynamicAssemblyTestApp/Plugin.cs @ 16998

Last change on this file since 16998 was 16985, checked in by dpiringe, 5 years ago

#2924:

  • added CLI Framework HeuristicLab.CommandLineInterface
  • added definition language test project HeuristicLab.DefinitionLanguage
  • added test project HeuristicLab.DynamicAssemblyTestApp, for PluginInfrastructure testing
  • changed project HeuristicLab to .NET Core and used it to create a CLI-Tool with the new CLI Framework
  • added Docker support to HeuristicLab
  • added IRunnerHost.cs ... forgot last commit
  • changed DockerRunnerHost and NativeRunnerHost to HeuristicLab-3.3.exe, was a little test project before
  • added new solution file HeuristicLab 3.3 No Views.sln, where all view projects are unloaded at start
File size: 994 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Text;
4using HeuristicLab.PluginInfrastructure;
5
6namespace HeuristicLab.DynamicAssemblyTestApp {
7
8  [Plugin("HeuristicLab.DynamicAssemblyTestApp", "1.0")]
9  [PluginFile("HeuristicLab.DynamicAssemblyTestApp.dll", PluginFileType.Assembly)]
10  [PluginDependency("HeuristicLab.Algorithms.GeneticAlgorithm", "3.3")]
11  [PluginDependency("HeuristicLab.Algorithms.ALPS", "3.3")]
12  [PluginDependency("HeuristicLab.Algorithms.ParticleSwarmOptimization", "3.3")]
13  [PluginDependency("HeuristicLab.Algorithms.EvolutionStrategy", "3.3")]
14  [PluginDependency("HeuristicLab.Algorithms.TabuSearch", "3.3")]
15  [PluginDependency("HeuristicLab.Algorithms.LocalSearch", "3.3")]
16  [PluginDependency("HeuristicLab.Problems.TravelingSalesman", "3.3")]
17  [PluginDependency("HeuristicLab.Problems.Knapsack", "3.3")]
18  [PluginDependency("HeuristicLab.SequentialEngine", "3.3")]
19  public class DynamicAssemblyTestPlugin : PluginBase { }
20}
Note: See TracBrowser for help on using the repository browser.