Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2924_DotNetCoreMigration/HeuristicLab.PluginInfrastructure/3.3/Isolation/AssemblyInfo.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: 360 bytes
Line 
1using System;
2
3namespace HeuristicLab.PluginInfrastructure {
4  [Serializable]
5  public class AssemblyInfo {
6    /// <summary>
7    /// Path to the assembly file.
8    /// </summary>
9    public UniPath Path { get; set; } = null;
10
11    /// <summary>
12    /// Fullname of the assembly.
13    /// </summary>
14    public string Name { get; set; }
15  }
16}
Note: See TracBrowser for help on using the repository browser.