Changeset 17026
- Timestamp:
- 06/19/19 15:03:20 (5 years ago)
- Location:
- branches/2924_DotNetCoreMigration/HeuristicLab.DynamicAssemblyTestApp
- Files:
-
- 2 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
branches/2924_DotNetCoreMigration/HeuristicLab.DynamicAssemblyTestApp/ConsoleInspector.cs
r17025 r17026 6 6 using HeuristicLab.PluginInfrastructure; 7 7 8 namespace HeuristicLab. DynamicAssemblyTestApp{8 namespace HeuristicLab.ConsoleApplications { 9 9 [StorableType("61621E70-8A67-43A2-8EB2-233FC01E493B")] 10 10 [Application("CLIInspect", "")] 11 public class InspectApplication: ApplicationBase {11 public class ConsoleInspector : ApplicationBase { 12 12 [Storable] 13 13 public UniPath InputFilePath { get; set; } 14 14 15 public InspectApplication() { }15 public ConsoleInspector() { } 16 16 17 public InspectApplication(UniPath inputFilePath) {17 public ConsoleInspector(UniPath inputFilePath) { 18 18 InputFilePath = inputFilePath; 19 19 } -
branches/2924_DotNetCoreMigration/HeuristicLab.DynamicAssemblyTestApp/ConsoleOptimizer.cs
r17013 r17026 8 8 using HeuristicLab.PluginInfrastructure; 9 9 10 namespace HeuristicLab. DynamicAssemblyTestApp{10 namespace HeuristicLab.ConsoleApplications { 11 11 [StorableType("33B32897-258B-4E29-8E2E-0A9A8AE67B1D")] 12 12 [Application("CLIOptimize", "")] -
branches/2924_DotNetCoreMigration/HeuristicLab.DynamicAssemblyTestApp/Plugin.cs
r16985 r17026 4 4 using HeuristicLab.PluginInfrastructure; 5 5 6 namespace HeuristicLab. DynamicAssemblyTestApp{6 namespace HeuristicLab.ConsoleApplications { 7 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 { } 8 [Plugin("HeuristicLab.ConsoleApplications", "1.0")] 9 [PluginFile("HeuristicLab.ConsoleApplications.dll", PluginFileType.Assembly)] 10 public class ConsoleApplications : PluginBase { } 20 11 }
Note: See TracChangeset
for help on using the changeset viewer.