Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/06/15 10:08:54 (9 years ago)
Author:
ascheibe
Message:

#2247 merged r11650, r11651 into stable

Location:
stable
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • stable

  • stable/HeuristicLab.ExtLibs

  • stable/HeuristicLab.ExtLibs/HeuristicLab.MathJax/1.1/HeuristicLab.MathJax-1.1/HeuristicLab.MathJax-1.1.csproj

    r11920 r11932  
    105105  </PropertyGroup>
    106106  <ItemGroup>
    107     <Reference Include="ICSharpCode.SharpZipLib, Version=0.85.4.369, Culture=neutral, PublicKeyToken=1b03e6acf1164f73, processorArchitecture=MSIL">
    108       <HintPath>..\..\..\..\HeuristicLab.PluginInfrastructure\3.3\ICSharpCode.SharpZipLib.dll</HintPath>
    109       <Private>False</Private>
    110     </Reference>
    111107    <Reference Include="System" />
    112108    <Reference Include="System.Core">
    113109      <RequiredTargetFramework>3.5</RequiredTargetFramework>
    114110    </Reference>
     111    <Reference Include="System.IO.Compression" />
     112    <Reference Include="System.IO.Compression.FileSystem" />
    115113    <Reference Include="System.Xml.Linq">
    116114      <RequiredTargetFramework>3.5</RequiredTargetFramework>
  • stable/HeuristicLab.ExtLibs/HeuristicLab.MathJax/1.1/HeuristicLab.MathJax-1.1/Plugin.cs.frame

    r11170 r11932  
    2121
    2222using System;
    23 using System.Collections.Generic;
     23using System.IO;
     24using System.IO.Compression;
    2425using System.Linq;
    25 using System.Text;
    26 using System.IO;
    27 
    2826using HeuristicLab.PluginInfrastructure;
    2927
     
    3836      base.OnLoad();
    3937      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, "");
     38        ZipFile.ExtractToDirectory("mathjax.zip", AppDomain.CurrentDomain.BaseDirectory);
    4239      }
    4340    }
Note: See TracChangeset for help on using the changeset viewer.