Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/17/10 19:01:27 (15 years ago)
Author:
gkronber
Message:

Fixed relevant warnings in the plugin infrastructure (didn't fix warnings about XML comments of members that will be removed soon). #915 (Remove warnings from HL 3.3 solution)

Location:
trunk/sources/HeuristicLab.PluginInfrastructure/Attributes
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.PluginInfrastructure/Attributes/ApplicationAttribute.cs

    r2790 r3092  
    7676    /// <param name="name">Name of the application</param>
    7777    /// <param name="description">Description of the application</param>
    78     /// <param name="version">Version string of the application</param>
    7978    /// <param name="restartOnErrors">Flag that indicates if the application should be restarted on exceptions (for services)</param>
    8079    /// </summary>
  • trunk/sources/HeuristicLab.PluginInfrastructure/Attributes/PluginDependencyAttribute.cs

    r2790 r3092  
    5656    }
    5757
     58    /// <summary>
     59    /// Initializes a new instance of <see cref="PluginDependencyAttribute" />.
     60    /// </summary>
     61    /// <param name="dependency">Name of the plugin dependency.</param>
     62    /// <param name="version">Version of the plugin dependency.</param>
    5863    public PluginDependencyAttribute(string dependency, string version) {
    5964      if (string.IsNullOrEmpty(dependency)) throw new ArgumentException("Dependency name is null or empty.", "dependency");
  • trunk/sources/HeuristicLab.PluginInfrastructure/Attributes/PluginFileAttribute.cs

    r2790 r3092  
    3030  /// </summary>
    3131  public enum PluginFileType {
     32    /// <summary>
     33    /// CLR assembly files are loaded by the plugin infrastructure.
     34    /// </summary>
    3235    Assembly,
     36    /// <summary>
     37    /// Native DLL files are ignored by the plugin infrastructure.
     38    /// </summary>
    3339    NativeDll,
     40    /// <summary>
     41    /// Data files are any kind of support file for your plugin.
     42    /// </summary>
    3443    Data,
     44    /// <summary>
     45    /// License files contain the license text of the plugin (ASCII encoding).
     46    /// </summary>
    3547    License
    3648  };
Note: See TracChangeset for help on using the changeset viewer.