Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/29/19 12:31:59 (5 years ago)
Author:
dpiringe
Message:

#2924:

  • in project HeuristicLab.CommandLineInterface changed output for options -> hidden options are not shown in the help box anymore
  • in project HeuristicLab.DynamicAssemblyTestApp:
    • added ApplicationAttributes
    • added full cancel/pause/resume support for class AppTest to test the same behaviour between main and child process
  • in project HeuristicLab:
    • changed auto generated Dockerfile -> only copies necessary projects -> speeds up the build process
    • in file HeuristicLab-3.3.csproj:
      • changed DockerDefaultTargetOS to Linux
      • removed reference HeuristicLab.DefinitionLanguage
      • added icon and manifest
    • deleted folder Properties with file launchSettings.json
    • changed the direct access to ApplicationTypes for OptimizeCommand and InspectCommand to new method IApplicationManager.GetInstances<T>(params object[] args)
  • added build script for docker image dockerImageBuild.ps1
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2924_DotNetCoreMigration/HeuristicLab/3.3/ApplicationCommand.cs

    r16985 r16998  
    11using System;
    2 using System.Collections.Generic;
    32using System.IO;
    43using HeuristicLab.CommandLineInterface;
     
    1211  }
    1312
    14   [HeuristicLab.CommandLineInterface.Application(
     13  [CommandLineInterface.Application(
    1514    "HL", "1.0.0.0",
    1615    SubCommands = new Type[] {
     
    3231
    3332    public void Execute() {
    34       if(StartAsRunnerHost) {
     33      if (StartAsRunnerHost) {
    3534        StartupRunnerHost();
    3635      } else {
    3736        SetupIsolation();
    3837      }
    39      
    4038    }
    4139
     
    4846      else
    4947        Console.Error.WriteLine("Cannot deserialize data from stdin to a type of RunnerConfig!");
    50 
    5148    }
    5249
Note: See TracChangeset for help on using the changeset viewer.