Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/18/09 18:33:30 (15 years ago)
Author:
gkronber
Message:

Worked on core of plugin infrastructure.

  • Collected all classes into a single assembly (HL.PluginInfrastructure)
  • Moved SplashScreen and MainForm from HeuristicLab.exe project into the plugin infrastructure.
  • Introduced namespaces
  • Added strict access modifiers (internal)
  • Fixed most FxCop warnings in plugin infrastructure core.
  • Fixed issues with plugin load/unload events
  • Deleted empty interface IControl

#799

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PluginInfrastructure Refactoring/HeuristicLab.PluginInfrastructure/Interfaces/IApplicationDescription.cs

    r2488 r2504  
    2424
    2525namespace HeuristicLab.PluginInfrastructure {
     26  /// <summary>
     27  /// Represents meta-data of an application.
     28  /// </summary>
    2629  public interface IApplicationDescription {
     30    /// <summary>
     31    /// Gets the name of the application.
     32    /// </summary>
    2733    string Name { get; }
    28     Version Version { get; }
    29     string DeclaringAssemblyName { get; }
    30     string DeclaringTypeName { get; }
     34    /// <summary>
     35    /// Gets the description of the application.
     36    /// </summary>
     37    string Description { get; }
    3138  }
    3239}
Note: See TracChangeset for help on using the changeset viewer.