Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/04/10 18:55:46 (14 years ago)
Author:
gkronber
Message:

Fixed projects to work with new plugin infrastructure. #799

File:
1 edited

Legend:

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

    r2504 r2587  
    3232    /// </summary>
    3333    string Name { get; }
     34    /// <summary>
     35    /// Gets the version of the plugin.
     36    /// </summary>
     37    Version Version { get; }
     38    /// <summary>
     39    /// Gets the build date of the plugin.
     40    /// </summary>
     41    DateTime BuildDate { get; }
     42    /// <summary>
     43    /// Gets the dependencies of the plugin.
     44    /// </summary>
     45    IEnumerable<IPluginDescription> Dependencies { get; }
     46    /// <summary>
     47    /// Gets the file names of files that are part of the plugin.
     48    /// </summary>
     49    IEnumerable<string> Files { get; }
    3450  }
    3551}
Note: See TracChangeset for help on using the changeset viewer.