Changeset 11677 for branches/ALPS/HeuristicLab.ExtLibs/HeuristicLab.MathJax
- Timestamp:
- 12/10/14 10:31:41 (10 years ago)
- Location:
- branches/ALPS
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ALPS
-
branches/ALPS/HeuristicLab.ExtLibs
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.ExtLibs (added) merged: 11623,11650
- Property svn:mergeinfo changed
-
branches/ALPS/HeuristicLab.ExtLibs/HeuristicLab.MathJax/1.1/HeuristicLab.MathJax-1.1/HeuristicLab.MathJax-1.1.csproj
r8600 r11677 11 11 <RootNamespace>HeuristicLab.MathJax</RootNamespace> 12 12 <AssemblyName>HeuristicLab.MathJax-1.1</AssemblyName> 13 <TargetFrameworkVersion>v4. 0</TargetFrameworkVersion>13 <TargetFrameworkVersion>v4.5</TargetFrameworkVersion> 14 14 <TargetFrameworkProfile> 15 15 </TargetFrameworkProfile> … … 46 46 <WarningLevel>4</WarningLevel> 47 47 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 48 <Prefer32Bit>false</Prefer32Bit> 48 49 </PropertyGroup> 49 50 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> … … 57 58 </DocumentationFile> 58 59 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 60 <Prefer32Bit>false</Prefer32Bit> 59 61 </PropertyGroup> 60 62 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' "> … … 66 68 <ErrorReport>prompt</ErrorReport> 67 69 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 70 <Prefer32Bit>false</Prefer32Bit> 68 71 </PropertyGroup> 69 72 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' "> … … 77 80 <ErrorReport>prompt</ErrorReport> 78 81 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 82 <Prefer32Bit>false</Prefer32Bit> 79 83 </PropertyGroup> 80 84 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> … … 86 90 <ErrorReport>prompt</ErrorReport> 87 91 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 92 <Prefer32Bit>false</Prefer32Bit> 88 93 </PropertyGroup> 89 94 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> … … 97 102 <ErrorReport>prompt</ErrorReport> 98 103 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 104 <Prefer32Bit>false</Prefer32Bit> 99 105 </PropertyGroup> 100 106 <ItemGroup> 101 <Reference Include="ICSharpCode.SharpZipLib, Version=0.85.4.369, Culture=neutral, PublicKeyToken=1b03e6acf1164f73, processorArchitecture=MSIL">102 <HintPath>..\..\..\..\HeuristicLab.PluginInfrastructure\3.3\ICSharpCode.SharpZipLib.dll</HintPath>103 <Private>False</Private>104 </Reference>105 107 <Reference Include="System" /> 106 108 <Reference Include="System.Core"> 107 109 <RequiredTargetFramework>3.5</RequiredTargetFramework> 108 110 </Reference> 111 <Reference Include="System.IO.Compression" /> 112 <Reference Include="System.IO.Compression.FileSystem" /> 109 113 <Reference Include="System.Xml.Linq"> 110 114 <RequiredTargetFramework>3.5</RequiredTargetFramework> … … 170 174 --> 171 175 <PropertyGroup> 172 <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">set Path=%25Path%25;$(ProjectDir);$(SolutionDir)176 <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">set Path=%25Path%25;$(ProjectDir);$(SolutionDir) 173 177 set ProjectDir=$(ProjectDir) 174 178 set SolutionDir=$(SolutionDir) … … 177 181 call PreBuildEvent.cmd 178 182 </PreBuildEvent> 179 <PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' ">183 <PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' "> 180 184 export ProjectDir=$(ProjectDir) 181 185 export SolutionDir=$(SolutionDir) -
branches/ALPS/HeuristicLab.ExtLibs/HeuristicLab.MathJax/1.1/HeuristicLab.MathJax-1.1/Plugin.cs.frame
r11171 r11677 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.