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:
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  
    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}
  • trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.MatlabConnector/1.0/HeuristicLab.MatlabConnector-1.0/Properties/AssemblyInfo.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.
     
    2727// set of attributes. Change these attribute values to modify the information
    2828// associated with an assembly.
    29 [assembly: AssemblyTitle("HeuristicLab.MathJax")]
     29[assembly: AssemblyTitle("HeuristicLab.MatlabConnector")]
    3030[assembly: AssemblyDescription("HeuristicLab transport plugin for MathJax (www.mathjax.org) , an open source JavaScript display engine for mathematics that works in all browsers")]
    3131[assembly: AssemblyConfiguration("")]
    3232[assembly: AssemblyCompany("")]
    3333[assembly: AssemblyProduct("HeuristicLab")]
    34 [assembly: AssemblyCopyright("(c) 2002-2013 HEAL")]
     34[assembly: AssemblyCopyright("(c) 2002-2014 HEAL")]
    3535[assembly: AssemblyTrademark("")]
    3636[assembly: AssemblyCulture("")]
     
    4040// COM, set the ComVisible attribute to true on that type.
    4141[assembly: ComVisible(false)]
    42 
    4342// 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")]
    4544
    4645// Version information for an assembly consists of the following four values:
     
    5453// by using the '*' as shown below:
    5554// [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.