- Timestamp:
- 09/24/10 10:24:20 (15 years ago)
- 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 58 58 internal set { version = value; } 59 59 } 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 }70 60 71 61 private string contactName; -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Manager/PluginManager.cs
r4414 r4482 24 24 using System.Linq; 25 25 using System.Reflection; 26 using System.Security.Permissions; 26 27 27 28 namespace HeuristicLab.PluginInfrastructure.Manager { … … 204 205 /// </summary> 205 206 /// <returns><c>null</c>.</returns> 207 [SecurityPermission(SecurityAction.LinkDemand, Flags=SecurityPermissionFlag.Infrastructure)] 206 208 public override object InitializeLifetimeService() { 207 209 return null; -
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Manager/PluginValidator.cs
r4068 r4482 301 301 } 302 302 303 private st ring ReadLicenseFiles(IEnumerable<PluginFile> pluginFiles) {303 private static string ReadLicenseFiles(IEnumerable<PluginFile> pluginFiles) { 304 304 // combine the contents of all plugin files 305 305 var licenseFiles = from file in pluginFiles … … 432 432 /// <param name="requested">The requested version that must be matched.</param> 433 433 /// <returns></returns> 434 private bool IsCompatiblePluginVersion(Version available, Version requested) {434 private static bool IsCompatiblePluginVersion(Version available, Version requested) { 435 435 // this condition must be removed after all plugins have been updated to declare plugin and dependency versions 436 436 if (
Note: See TracChangeset
for help on using the changeset viewer.