Changeset 11124 for trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.MatlabConnector/1.0/HeuristicLab.MatlabConnector-1.0/Plugin.cs.frame
- Timestamp:
- 07/07/14 17:52:50 (10 years ago)
- 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 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 3Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2014 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 28 28 using HeuristicLab.PluginInfrastructure; 29 29 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 } 30 namespace 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 { 44 36 } 45 37 }
Note: See TracChangeset
for help on using the changeset viewer.