Changeset 11932 for stable/HeuristicLab.ExtLibs/HeuristicLab.MathJax
- Timestamp:
- 02/06/15 10:08:54 (10 years ago)
- Location:
- stable
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 11650-11651
- Property svn:mergeinfo changed
-
stable/HeuristicLab.ExtLibs
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.ExtLibs merged: 11650
- Property svn:mergeinfo changed
-
stable/HeuristicLab.ExtLibs/HeuristicLab.MathJax/1.1/HeuristicLab.MathJax-1.1/HeuristicLab.MathJax-1.1.csproj
r11920 r11932 105 105 </PropertyGroup> 106 106 <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>111 107 <Reference Include="System" /> 112 108 <Reference Include="System.Core"> 113 109 <RequiredTargetFramework>3.5</RequiredTargetFramework> 114 110 </Reference> 111 <Reference Include="System.IO.Compression" /> 112 <Reference Include="System.IO.Compression.FileSystem" /> 115 113 <Reference Include="System.Xml.Linq"> 116 114 <RequiredTargetFramework>3.5</RequiredTargetFramework> -
stable/HeuristicLab.ExtLibs/HeuristicLab.MathJax/1.1/HeuristicLab.MathJax-1.1/Plugin.cs.frame
r11170 r11932 21 21 22 22 using System; 23 using System.Collections.Generic; 23 using System.IO; 24 using System.IO.Compression; 24 25 using System.Linq; 25 using System.Text;26 using System.IO;27 28 26 using HeuristicLab.PluginInfrastructure; 29 27 … … 38 36 base.OnLoad(); 39 37 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); 42 39 } 43 40 }
Note: See TracChangeset
for help on using the changeset viewer.