Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/07/14 17:52:50 (10 years ago)
Author:
mkommend
Message:

#2082: Added extlib for the COM matlab connector.

Location:
trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.MatlabConnector
Files:
3 added
1 copied

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.MatlabConnector/1.0/HeuristicLab.MatlabConnector-1.0/Plugin.cs.frame

    r11115 r11124  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2014 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2828using HeuristicLab.PluginInfrastructure;
    2929
    30 namespace HeuristicLab.MathJax {
    31   [Plugin("HeuristicLab.MathJax", "HeuristicLab transport plugin for MathJax (www.mathjax.org) , an open source JavaScript display engine for mathematics that works in all browsers", "1.1.$WCREV$")]
    32   [PluginFile("HeuristicLab.MathJax-1.1.dll", PluginFileType.Assembly)]
    33   [PluginFile("MathJax license.txt", PluginFileType.License)]
    34   [PluginFile("mathjax.zip", PluginFileType.Data)]
    35 
    36   public class HeuristicLabMathJaxPlugin : PluginBase {
    37     public override void OnLoad() {
    38       base.OnLoad();
    39       if (!Directory.EnumerateFiles(AppDomain.CurrentDomain.BaseDirectory, "mathjax.js", SearchOption.TopDirectoryOnly).Any()) {
    40         var zip = new ICSharpCode.SharpZipLib.Zip.FastZip();
    41         zip.ExtractZip("mathjax.zip", AppDomain.CurrentDomain.BaseDirectory, "");
    42       }
    43     }
     30namespace HeuristicLab.MatlabConnector {
     31  [Plugin("HeuristicLab.MatlabConnector", "HeuristicLab transport plugin for the COM MATLAB connector Interop.MLAPP.dll", "1.0.$WCREV$")]
     32  [PluginFile("HeuristicLab.MatlabConnecotr-1.0.dll", PluginFileType.Assembly)]
     33  [PluginFile("Interop.MLApp.dll",  PluginFileType.Assembly)]
     34  [PluginFile("Mathworks Interop License.txt", PluginFileType.License)]
     35  public class HeuristicLabMathJaxPlugin : PluginBase { 
    4436  }
    4537}
Note: See TracChangeset for help on using the changeset viewer.