Changeset 11124
- Timestamp:
- 07/07/14 17:52:50 (10 years ago)
- Location:
- trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.MatlabConnector
- Files:
-
- 7 added
- 3 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 } -
trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.MatlabConnector/1.0/HeuristicLab.MatlabConnector-1.0/Properties/AssemblyInfo.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. … … 27 27 // set of attributes. Change these attribute values to modify the information 28 28 // associated with an assembly. 29 [assembly: AssemblyTitle("HeuristicLab.Mat hJax")]29 [assembly: AssemblyTitle("HeuristicLab.MatlabConnector")] 30 30 [assembly: AssemblyDescription("HeuristicLab transport plugin for MathJax (www.mathjax.org) , an open source JavaScript display engine for mathematics that works in all browsers")] 31 31 [assembly: AssemblyConfiguration("")] 32 32 [assembly: AssemblyCompany("")] 33 33 [assembly: AssemblyProduct("HeuristicLab")] 34 [assembly: AssemblyCopyright("(c) 2002-201 3HEAL")]34 [assembly: AssemblyCopyright("(c) 2002-2014 HEAL")] 35 35 [assembly: AssemblyTrademark("")] 36 36 [assembly: AssemblyCulture("")] … … 40 40 // COM, set the ComVisible attribute to true on that type. 41 41 [assembly: ComVisible(false)] 42 43 42 // The following GUID is for the ID of the typelib if this project is exposed to COM 44 [assembly: Guid(" 801C14B0-2379-47A5-B67A-E24CAF9B1424")]43 [assembly: Guid("58260ACD-B719-4F4B-A683-620529E7947C")] 45 44 46 45 // Version information for an assembly consists of the following four values: … … 54 53 // by using the '*' as shown below: 55 54 // [assembly: AssemblyVersion("1.0.*")] 56 [assembly: AssemblyVersion("1. 1.0.0")]57 [assembly: AssemblyFileVersion("1. 1.0.$WCREV$")]55 [assembly: AssemblyVersion("1.0.0.0")] 56 [assembly: AssemblyFileVersion("1.0.0.$WCREV$")]
Note: See TracChangeset
for help on using the changeset viewer.