Changeset 11650 for trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.MathJax/1.1/HeuristicLab.MathJax-1.1
- Timestamp:
- 12/04/14 12:56:57 (10 years ago)
- Location:
- trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.MathJax/1.1/HeuristicLab.MathJax-1.1
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.MathJax/1.1/HeuristicLab.MathJax-1.1/HeuristicLab.MathJax-1.1.csproj
r11623 r11650 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> -
trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.MathJax/1.1/HeuristicLab.MathJax-1.1/Plugin.cs.frame
r11171 r11650 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.