Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/24/10 10:24:20 (14 years ago)
Author:
gkronber
Message:

Preparations for next HL release. #1203

Location:
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Attributes
Files:
1 deleted
2 edited

Legend:

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

    r4068 r4482  
    5353    }
    5454
    55     [Obsolete]
    56     public PluginAttribute(string name) : this(name, "0.0.0.0") { }
    57 
    5855    /// <summary>
    5956    /// Initializes a new instance of <see cref="PluginAttribute"/>.
     
    7471      if (string.IsNullOrEmpty(name)) throw new ArgumentException("Plugin name is null or empty.");
    7572      if (description == null) throw new ArgumentNullException("description");
    76       if (string.IsNullOrEmpty(version)) new ArgumentException("Version string is null or empty.");
     73      if (string.IsNullOrEmpty(version)) throw new ArgumentException("Version string is null or empty.");
    7774      this.name = name;
    7875      this.description = description;
  • trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Attributes/PluginDependencyAttribute.cs

    r4068 r4482  
    4646
    4747    /// <summary>
    48     /// Initializes a new instance of <see cref="PluginDependencyAttribute"/>.
    49     /// <param name="dependency">The name of the plugin that is needed to load a plugin.</param>
    50     /// </summary>
    51     [Obsolete]
    52     public PluginDependencyAttribute(string dependency)
    53       : this(dependency, "0.0.0.0") {
    54     }
    55 
    56     /// <summary>
    5748    /// Initializes a new instance of <see cref="PluginDependencyAttribute" />.
    5849    /// </summary>
Note: See TracChangeset for help on using the changeset viewer.