- Timestamp:
- 01/21/10 18:33:00 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.PluginInfrastructure
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.PluginInfrastructure/Interfaces/IPluginDescription.cs
r2592 r2666 48 48 /// </summary> 49 49 IEnumerable<string> Files { get; } 50 51 /// <summary> 52 /// Get a list of assembly names associated with the plugin. 53 /// </summary> 54 IEnumerable<string> Assemblies { get; } 50 55 } 51 56 } -
trunk/sources/HeuristicLab.PluginInfrastructure/Manager/PluginDescription.cs
r2592 r2666 109 109 /// Gets the names of the assemblies that belong to this plugin. 110 110 /// </summary> 111 internalIEnumerable<string> Assemblies {111 public IEnumerable<string> Assemblies { 112 112 get { return assemblies; } 113 113 // set { assemblies = value; }
Note: See TracChangeset
for help on using the changeset viewer.