Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2924_DotNetCoreMigration/HeuristicLab.PluginInfrastructure/3.3/Isolation/PluginLoaderFactory.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: 482 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.IO;
4using System.Text;
5
6namespace HeuristicLab.PluginInfrastructure {
7  /// <summary>
8  /// Factory to create an instance of a plugin loader.
9  /// </summary>
10  public static class PluginLoaderFactory {
11    /// <summary>
12    /// Creates a new instance of a plugin loader.
13    /// </summary>
14    public static IPluginLoader Create() {
15      return new PluginLoader(new AssemblyLoader());
16    }
17  }
18}
Note: See TracBrowser for help on using the repository browser.