Free cookie consent management tool by TermsFeed Policy Generator

Changeset 7948


Ignore:
Timestamp:
06/01/12 16:41:10 (12 years ago)
Author:
mkommend
Message:

#1863: excluded HL.MathJax from the dependency unit test and corrected some plugin dependencies.

Location:
trunk/sources
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Algorithms.DataAnalysis.Views/3.4/Plugin.cs.frame

    r7259 r7948  
    3535  [PluginDependency("HeuristicLab.Data", "3.3")]
    3636  [PluginDependency("HeuristicLab.Data.Views", "3.3")]
     37  [PluginDependency("HeuristicLab.LibSVM", "1.6.3")]
    3738  [PluginDependency("HeuristicLab.MainForm", "3.3")]
    3839  [PluginDependency("HeuristicLab.MainForm.WindowsForms", "3.3")]
  • trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.SharpDevelop/3.1.1.5327/Plugin.cs

    r7259 r7948  
    3131  [PluginFile("Mono Cecil License.txt", PluginFileType.License)]
    3232  [PluginFile("SharpDevelop License.txt", PluginFileType.License)]
    33   [PluginDependency("HeuristicLab.log4net", "1.2.10.0")]
    3433  public class Plugin : PluginBase {
    3534  }
  • trunk/sources/HeuristicLab.Tests/HeuristicLab-3.3/PluginDependenciesTest.cs

    r7947 r7948  
    8585        foreach (PluginDependencyAttribute attribute in pluginDependencies.Keys) {
    8686          string pluginDependencyName = pluginDependencies[attribute];
     87
     88          if (pluginDependencyName == "HeuristicLab.MathJax") continue; //is never referenced as this plugin contains HTML files
    8789          var referencedPluginAssemblies = pluginAssembly.GetReferencedAssemblies().Where(IsPluginAssemblyName);
    8890          if (referencedPluginAssemblies.Any(a => pluginNames[a.FullName] == pluginDependencyName)) continue;
Note: See TracChangeset for help on using the changeset viewer.