Free cookie consent management tool by TermsFeed Policy Generator

Changeset 17026


Ignore:
Timestamp:
06/19/19 15:03:20 (5 years ago)
Author:
dpiringe
Message:

#2924:

  • renamed HeuristicLab.DynamicAssemblyTestApp to HeuristicLab.ConsoleApplications
    • incl. Namespace and plugin name
  • renamed InspectApplication to ConsoleInspector
Location:
branches/2924_DotNetCoreMigration/HeuristicLab.DynamicAssemblyTestApp
Files:
2 edited
2 moved

Legend:

Unmodified
Added
Removed
  • branches/2924_DotNetCoreMigration/HeuristicLab.DynamicAssemblyTestApp/ConsoleInspector.cs

    r17025 r17026  
    66using HeuristicLab.PluginInfrastructure;
    77
    8 namespace HeuristicLab.DynamicAssemblyTestApp {
     8namespace HeuristicLab.ConsoleApplications {
    99  [StorableType("61621E70-8A67-43A2-8EB2-233FC01E493B")]
    1010  [Application("CLIInspect", "")]
    11   public class InspectApplication : ApplicationBase {
     11  public class ConsoleInspector : ApplicationBase {
    1212    [Storable]
    1313    public UniPath InputFilePath { get; set; }
    1414
    15     public InspectApplication() { }
     15    public ConsoleInspector() { }
    1616
    17     public InspectApplication(UniPath inputFilePath) {
     17    public ConsoleInspector(UniPath inputFilePath) {
    1818      InputFilePath = inputFilePath;
    1919    }
  • branches/2924_DotNetCoreMigration/HeuristicLab.DynamicAssemblyTestApp/ConsoleOptimizer.cs

    r17013 r17026  
    88using HeuristicLab.PluginInfrastructure;
    99
    10 namespace HeuristicLab.DynamicAssemblyTestApp {
     10namespace HeuristicLab.ConsoleApplications {
    1111  [StorableType("33B32897-258B-4E29-8E2E-0A9A8AE67B1D")]
    1212  [Application("CLIOptimize", "")]
  • branches/2924_DotNetCoreMigration/HeuristicLab.DynamicAssemblyTestApp/Plugin.cs

    r16985 r17026  
    44using HeuristicLab.PluginInfrastructure;
    55
    6 namespace HeuristicLab.DynamicAssemblyTestApp {
     6namespace HeuristicLab.ConsoleApplications {
    77
    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 { }
     8  [Plugin("HeuristicLab.ConsoleApplications", "1.0")]
     9  [PluginFile("HeuristicLab.ConsoleApplications.dll", PluginFileType.Assembly)]
     10  public class ConsoleApplications : PluginBase { }
    2011}
Note: See TracChangeset for help on using the changeset viewer.