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/Manager
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Manager/PluginDescription.cs

    r4068 r4482  
    5858      internal set { version = value; }
    5959    }
    60     [Obsolete]
    61     private DateTime buildDate;
    62     /// <summary>
    63     /// Gets the build date of the plugin.
    64     /// </summary>
    65     [Obsolete]
    66     public DateTime BuildDate {
    67       get { return buildDate; }
    68       internal set { buildDate = value; }
    69     }
    7060
    7161    private string contactName;
  • trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Manager/PluginManager.cs

    r4414 r4482  
    2424using System.Linq;
    2525using System.Reflection;
     26using System.Security.Permissions;
    2627
    2728namespace HeuristicLab.PluginInfrastructure.Manager {
     
    204205    /// </summary>
    205206    /// <returns><c>null</c>.</returns>
     207    [SecurityPermission(SecurityAction.LinkDemand, Flags=SecurityPermissionFlag.Infrastructure)]
    206208    public override object InitializeLifetimeService() {
    207209      return null;
  • trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Manager/PluginValidator.cs

    r4068 r4482  
    301301    }
    302302
    303     private string ReadLicenseFiles(IEnumerable<PluginFile> pluginFiles) {
     303    private static string ReadLicenseFiles(IEnumerable<PluginFile> pluginFiles) {
    304304      // combine the contents of all plugin files
    305305      var licenseFiles = from file in pluginFiles
     
    432432    /// <param name="requested">The requested version that must be matched.</param>
    433433    /// <returns></returns>
    434     private bool IsCompatiblePluginVersion(Version available, Version requested) {
     434    private static bool IsCompatiblePluginVersion(Version available, Version requested) {
    435435      // this condition must be removed after all plugins have been updated to declare plugin and dependency versions
    436436      if (
Note: See TracChangeset for help on using the changeset viewer.