Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2924_DotNetCoreMigration/HeuristicLab.PluginInfrastructure/3.3/Isolation/NativeRunnerHost.cs @ 16984

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

#2924:

  • merged projects HeuristicLab.PluginInfrastructure.Runner and HeuristicLab.PluginInfrastructure
  • applied changes of code reviews (13.05.2019 and 22.05.2019) -> the old Runner is now RunnerHost and uses a Runner, which is executed on the child process
  • added Type GetType(string) to IApplicationManager and implemented it for LightweightApplicationManager
  • removed IActivator and IActivatorContext
  • deleted unused types like PluginDescriptionIterator
File size: 366 bytes
Line 
1using System.IO;
2
3namespace HeuristicLab.PluginInfrastructure {
4  /// <summary>
5  /// IRunner for isolation with a native process.
6  /// </summary>
7  public class NativeRunnerHost : RunnerHost {
8    public NativeRunnerHost()
9      : base($"{Directory.GetCurrentDirectory()}{Path.DirectorySeparatorChar}HLCore.exe", "", null, null, null) {
10    }
11  }
12}
Note: See TracBrowser for help on using the repository browser.