- Timestamp:
- 03/17/10 19:01:27 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.PluginInfrastructure/Attributes
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.PluginInfrastructure/Attributes/ApplicationAttribute.cs
r2790 r3092 76 76 /// <param name="name">Name of the application</param> 77 77 /// <param name="description">Description of the application</param> 78 /// <param name="version">Version string of the application</param>79 78 /// <param name="restartOnErrors">Flag that indicates if the application should be restarted on exceptions (for services)</param> 80 79 /// </summary> -
trunk/sources/HeuristicLab.PluginInfrastructure/Attributes/PluginDependencyAttribute.cs
r2790 r3092 56 56 } 57 57 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> 58 63 public PluginDependencyAttribute(string dependency, string version) { 59 64 if (string.IsNullOrEmpty(dependency)) throw new ArgumentException("Dependency name is null or empty.", "dependency"); -
trunk/sources/HeuristicLab.PluginInfrastructure/Attributes/PluginFileAttribute.cs
r2790 r3092 30 30 /// </summary> 31 31 public enum PluginFileType { 32 /// <summary> 33 /// CLR assembly files are loaded by the plugin infrastructure. 34 /// </summary> 32 35 Assembly, 36 /// <summary> 37 /// Native DLL files are ignored by the plugin infrastructure. 38 /// </summary> 33 39 NativeDll, 40 /// <summary> 41 /// Data files are any kind of support file for your plugin. 42 /// </summary> 34 43 Data, 44 /// <summary> 45 /// License files contain the license text of the plugin (ASCII encoding). 46 /// </summary> 35 47 License 36 48 };
Note: See TracChangeset
for help on using the changeset viewer.