Skip to content

Commit c80caf5

Browse files
committed
Upgrade dependencies to latest versions. Closes reactjs#216. References reactjs#198
1 parent f60cf04 commit c80caf5

29 files changed

+261
-215
lines changed

src/Cassette.React/Cassette.React.csproj

+6-6
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@
3535
<DocumentationFile>..\..\bin\Release\Cassette.React\Cassette.React.XML</DocumentationFile>
3636
</PropertyGroup>
3737
<ItemGroup>
38-
<Reference Include="AjaxMin, Version=4.84.4790.14405, Culture=neutral, PublicKeyToken=21ef50ce11b5d80f, processorArchitecture=MSIL">
39-
<SpecificVersion>False</SpecificVersion>
40-
<HintPath>..\packages\AjaxMin.4.84.4790.14417\lib\net40\AjaxMin.dll</HintPath>
38+
<Reference Include="AjaxMin, Version=5.14.5506.26196, Culture=neutral, PublicKeyToken=21ef50ce11b5d80f, processorArchitecture=MSIL">
39+
<HintPath>..\packages\AjaxMin.5.14.5506.26202\lib\net40\AjaxMin.dll</HintPath>
40+
<Private>True</Private>
4141
</Reference>
42-
<Reference Include="Cassette, Version=2.4.1.23586, Culture=neutral, processorArchitecture=MSIL">
43-
<SpecificVersion>False</SpecificVersion>
44-
<HintPath>..\packages\Cassette.2.4.1\lib\net40-client\Cassette.dll</HintPath>
42+
<Reference Include="Cassette, Version=2.4.2.13844, Culture=neutral, processorArchitecture=MSIL">
43+
<HintPath>..\packages\Cassette.2.4.2\lib\net40-client\Cassette.dll</HintPath>
44+
<Private>True</Private>
4545
</Reference>
4646
<Reference Include="System" />
4747
<Reference Include="System.Core" />

src/Cassette.React/packages.config

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="AjaxMin" version="4.84.4790.14417" targetFramework="net40" />
4-
<package id="Cassette" version="2.4.1" targetFramework="net40" />
3+
<package id="AjaxMin" version="5.14.5506.26202" targetFramework="net40" />
4+
<package id="Cassette" version="2.4.2" targetFramework="net40" />
55
</packages>

src/React.AspNet/project.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@
2020
"Microsoft.AspNet.StaticFiles": "1.0.0-rc1-final",
2121
"Microsoft.AspNet.FileProviders.Physical": "1.0.0-rc1-final",
2222
"Microsoft.AspNet.Mvc.ViewFeatures": "6.0.0-rc1-final",
23-
"MsieJavaScriptEngine": "1.5.1",
23+
"MsieJavaScriptEngine": "1.6.0",
2424
"React.Core": "",
2525
"JavaScriptEngineSwitcher.Core": "1.2.4.0",
26-
"JavaScriptEngineSwitcher.Msie": "1.2.4",
27-
"JavaScriptEngineSwitcher.V8": "1.2.4",
28-
"Microsoft.Extensions.DependencyInjection": "1.0.0-rc1-final"
26+
"Microsoft.Extensions.DependencyInjection": "1.0.0-rc1-final",
27+
"JavaScriptEngineSwitcher.Msie": "1.4.0",
28+
"JavaScriptEngineSwitcher.V8": "1.4.1"
2929
},
3030
"frameworks": {
3131
"dnx451": { }

src/React.Core/AssemblyRegistration.cs

+9-4
Original file line numberDiff line numberDiff line change
@@ -68,18 +68,23 @@ private void RegisterSupportedEngines(TinyIoCContainer container)
6868

6969
container.Register(new JavaScriptEngineFactory.Registration
7070
{
71-
Factory = () => new MsieJsEngine(new MsieConfiguration { EngineMode = JsEngineMode.ChakraJsRt }),
71+
Factory = () => new MsieJsEngine(new MsieConfiguration { EngineMode = JsEngineMode.ChakraEdgeJsRt }),
7272
Priority = 20
73-
}, "MsieChakraRT");
73+
}, "MsieChakraEdgeRT");
7474
container.Register(new JavaScriptEngineFactory.Registration
7575
{
76-
Factory = () => new MsieJsEngine(new MsieConfiguration { EngineMode = JsEngineMode.ChakraActiveScript }),
76+
Factory = () => new MsieJsEngine(new MsieConfiguration { EngineMode = JsEngineMode.ChakraIeJsRt }),
7777
Priority = 30
78+
}, "MsieChakraIeRT");
79+
container.Register(new JavaScriptEngineFactory.Registration
80+
{
81+
Factory = () => new MsieJsEngine(new MsieConfiguration { EngineMode = JsEngineMode.ChakraActiveScript }),
82+
Priority = 40
7883
}, "MsieChakraActiveScript");
7984
container.Register(new JavaScriptEngineFactory.Registration
8085
{
8186
Factory = () => new MsieJsEngine(new MsieConfiguration { EngineMode = JsEngineMode.Classic }),
82-
Priority = 40
87+
Priority = 50
8388
}, "MsieClassic");
8489
}
8590
}

src/React.Core/React.Core.csproj

+21-10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="..\packages\JavaScriptEngineSwitcher.V8.1.4.1\build\JavaScriptEngineSwitcher.V8.props" Condition="Exists('..\packages\JavaScriptEngineSwitcher.V8.1.4.1\build\JavaScriptEngineSwitcher.V8.props')" />
34
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
45
<PropertyGroup>
56
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@@ -11,6 +12,8 @@
1112
<AssemblyName>React.Core</AssemblyName>
1213
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
1314
<FileAlignment>512</FileAlignment>
15+
<NuGetPackageImportStamp>
16+
</NuGetPackageImportStamp>
1417
</PropertyGroup>
1518
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1619
<DebugSymbols>true</DebugSymbols>
@@ -46,27 +49,29 @@
4649
<StartupObject />
4750
</PropertyGroup>
4851
<ItemGroup>
49-
<Reference Include="ClearScript">
50-
<HintPath>..\packages\JavaScriptEngineSwitcher.V8.1.2.4\lib\net40\ClearScript.dll</HintPath>
52+
<Reference Include="ClearScript, Version=5.4.4.0, Culture=neutral, PublicKeyToken=935d0c957da47c73, processorArchitecture=MSIL">
53+
<HintPath>..\packages\JavaScriptEngineSwitcher.V8.1.4.1\lib\net40\ClearScript.dll</HintPath>
54+
<Private>True</Private>
5155
</Reference>
5256
<Reference Include="JavaScriptEngineSwitcher.Core, Version=1.2.4.0, Culture=neutral, PublicKeyToken=c608b2a8cc9e4472, processorArchitecture=MSIL">
5357
<SpecificVersion>False</SpecificVersion>
5458
<HintPath>..\packages\JavaScriptEngineSwitcher.Core.1.2.4\lib\net40\JavaScriptEngineSwitcher.Core.dll</HintPath>
5559
</Reference>
56-
<Reference Include="JavaScriptEngineSwitcher.Msie, Version=1.2.4.0, Culture=neutral, PublicKeyToken=c608b2a8cc9e4472, processorArchitecture=MSIL">
57-
<SpecificVersion>False</SpecificVersion>
58-
<HintPath>..\packages\JavaScriptEngineSwitcher.Msie.1.2.4\lib\net40\JavaScriptEngineSwitcher.Msie.dll</HintPath>
60+
<Reference Include="JavaScriptEngineSwitcher.Msie, Version=1.4.0.0, Culture=neutral, PublicKeyToken=c608b2a8cc9e4472, processorArchitecture=MSIL">
61+
<HintPath>..\packages\JavaScriptEngineSwitcher.Msie.1.4.0\lib\net40\JavaScriptEngineSwitcher.Msie.dll</HintPath>
62+
<Private>True</Private>
5963
</Reference>
60-
<Reference Include="JavaScriptEngineSwitcher.V8">
61-
<HintPath>..\packages\JavaScriptEngineSwitcher.V8.1.2.4\lib\net40\JavaScriptEngineSwitcher.V8.dll</HintPath>
64+
<Reference Include="JavaScriptEngineSwitcher.V8, Version=1.4.1.0, Culture=neutral, PublicKeyToken=c608b2a8cc9e4472, processorArchitecture=MSIL">
65+
<HintPath>..\packages\JavaScriptEngineSwitcher.V8.1.4.1\lib\net40\JavaScriptEngineSwitcher.V8.dll</HintPath>
66+
<Private>True</Private>
6267
</Reference>
6368
<Reference Include="JSPool, Version=0.3.0.0, Culture=neutral, PublicKeyToken=2fc7775f73072640, processorArchitecture=MSIL">
6469
<HintPath>..\packages\JSPool.0.3.1\lib\net40-Client\JSPool.dll</HintPath>
6570
<Private>True</Private>
6671
</Reference>
67-
<Reference Include="MsieJavaScriptEngine, Version=1.5.1.0, Culture=neutral, PublicKeyToken=a3a2846a37ac0d3e, processorArchitecture=MSIL">
68-
<SpecificVersion>False</SpecificVersion>
69-
<HintPath>..\packages\MsieJavaScriptEngine.1.5.1\lib\net40\MsieJavaScriptEngine.dll</HintPath>
72+
<Reference Include="MsieJavaScriptEngine, Version=1.6.0.0, Culture=neutral, PublicKeyToken=a3a2846a37ac0d3e, processorArchitecture=MSIL">
73+
<HintPath>..\packages\MsieJavaScriptEngine.1.6.0\lib\net40\MsieJavaScriptEngine.dll</HintPath>
74+
<Private>True</Private>
7075
</Reference>
7176
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
7277
<SpecificVersion>False</SpecificVersion>
@@ -148,6 +153,12 @@
148153
<Content Include="Resources\react.js" />
149154
</ItemGroup>
150155
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
156+
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
157+
<PropertyGroup>
158+
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
159+
</PropertyGroup>
160+
<Error Condition="!Exists('..\packages\JavaScriptEngineSwitcher.V8.1.4.1\build\JavaScriptEngineSwitcher.V8.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\JavaScriptEngineSwitcher.V8.1.4.1\build\JavaScriptEngineSwitcher.V8.props'))" />
161+
</Target>
151162
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
152163
Other similar extension points exist, see Microsoft.Common.targets.
153164
<Target Name="BeforeBuild">

src/React.Core/packages.config

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
33
<package id="JavaScriptEngineSwitcher.Core" version="1.2.4" targetFramework="net4" />
4-
<package id="JavaScriptEngineSwitcher.Msie" version="1.2.4" targetFramework="net4" />
5-
<package id="JavaScriptEngineSwitcher.V8" version="1.2.4" targetFramework="net4" />
4+
<package id="JavaScriptEngineSwitcher.Msie" version="1.4.0" targetFramework="net40" />
5+
<package id="JavaScriptEngineSwitcher.V8" version="1.4.1" targetFramework="net40" />
66
<package id="JSPool" version="0.3.1" targetFramework="net4" />
7-
<package id="MsieJavaScriptEngine" version="1.5.1" targetFramework="net4" />
7+
<package id="MsieJavaScriptEngine" version="1.6.0" targetFramework="net40" />
88
<package id="Newtonsoft.Json" version="6.0.8" targetFramework="net4" />
99
</packages>

src/React.Owin/React.Owin.csproj

+9-8
Original file line numberDiff line numberDiff line change
@@ -48,16 +48,17 @@
4848
<SpecificVersion>False</SpecificVersion>
4949
<HintPath>..\packages\JavaScriptEngineSwitcher.Core.1.2.4\lib\net40\JavaScriptEngineSwitcher.Core.dll</HintPath>
5050
</Reference>
51-
<Reference Include="Microsoft.Owin, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
52-
<SpecificVersion>False</SpecificVersion>
53-
<HintPath>..\packages\Microsoft.Owin.3.0.0\lib\net45\Microsoft.Owin.dll</HintPath>
51+
<Reference Include="Microsoft.Owin, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
52+
<HintPath>..\packages\Microsoft.Owin.3.0.1\lib\net45\Microsoft.Owin.dll</HintPath>
53+
<Private>True</Private>
5454
</Reference>
55-
<Reference Include="Microsoft.Owin.FileSystems, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
56-
<SpecificVersion>False</SpecificVersion>
57-
<HintPath>..\packages\Microsoft.Owin.FileSystems.3.0.0\lib\net45\Microsoft.Owin.FileSystems.dll</HintPath>
55+
<Reference Include="Microsoft.Owin.FileSystems, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
56+
<HintPath>..\packages\Microsoft.Owin.FileSystems.3.0.1\lib\net45\Microsoft.Owin.FileSystems.dll</HintPath>
57+
<Private>True</Private>
5858
</Reference>
59-
<Reference Include="Microsoft.Owin.StaticFiles">
60-
<HintPath>..\packages\Microsoft.Owin.StaticFiles.3.0.0\lib\net45\Microsoft.Owin.StaticFiles.dll</HintPath>
59+
<Reference Include="Microsoft.Owin.StaticFiles, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
60+
<HintPath>..\packages\Microsoft.Owin.StaticFiles.3.0.1\lib\net45\Microsoft.Owin.StaticFiles.dll</HintPath>
61+
<Private>True</Private>
6162
</Reference>
6263
<Reference Include="Owin, Version=1.0.0.0, Culture=neutral, PublicKeyToken=f0ebd12fd5e55cc5, processorArchitecture=MSIL">
6364
<SpecificVersion>False</SpecificVersion>

src/React.Owin/packages.config

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
33
<package id="JavaScriptEngineSwitcher.Core" version="1.2.4" targetFramework="net45" />
4-
<package id="Microsoft.Owin" version="3.0.0" targetFramework="net45" />
5-
<package id="Microsoft.Owin.FileSystems" version="3.0.0" targetFramework="net45" />
6-
<package id="Microsoft.Owin.StaticFiles" version="3.0.0" targetFramework="net45" />
4+
<package id="Microsoft.Owin" version="3.0.1" targetFramework="net45" />
5+
<package id="Microsoft.Owin.FileSystems" version="3.0.1" targetFramework="net45" />
6+
<package id="Microsoft.Owin.StaticFiles" version="3.0.1" targetFramework="net45" />
77
<package id="Owin" version="1.0" targetFramework="net45" />
88
</packages>

src/React.Sample.Cassette/React.Sample.Cassette.csproj

+18-16
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
<UpgradeBackupLocation>
2727
</UpgradeBackupLocation>
2828
<OldToolsVersion>12.0</OldToolsVersion>
29+
<UseGlobalApplicationHostFile />
2930
</PropertyGroup>
3031
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
3132
<DebugSymbols>true</DebugSymbols>
@@ -47,25 +48,25 @@
4748
<NoWarn>1607</NoWarn>
4849
</PropertyGroup>
4950
<ItemGroup>
50-
<Reference Include="AjaxMin, Version=4.84.4790.14405, Culture=neutral, PublicKeyToken=21ef50ce11b5d80f, processorArchitecture=MSIL">
51-
<SpecificVersion>False</SpecificVersion>
52-
<HintPath>..\packages\AjaxMin.4.84.4790.14417\lib\net40\AjaxMin.dll</HintPath>
51+
<Reference Include="AjaxMin, Version=5.14.5506.26196, Culture=neutral, PublicKeyToken=21ef50ce11b5d80f, processorArchitecture=MSIL">
52+
<HintPath>..\packages\AjaxMin.5.14.5506.26202\lib\net40\AjaxMin.dll</HintPath>
53+
<Private>True</Private>
5354
</Reference>
54-
<Reference Include="Cassette, Version=2.4.1.23586, Culture=neutral, processorArchitecture=MSIL">
55-
<SpecificVersion>False</SpecificVersion>
56-
<HintPath>..\packages\Cassette.2.4.1\lib\net40-client\Cassette.dll</HintPath>
55+
<Reference Include="Cassette, Version=2.4.2.13844, Culture=neutral, processorArchitecture=MSIL">
56+
<HintPath>..\packages\Cassette.2.4.2\lib\net40-client\Cassette.dll</HintPath>
57+
<Private>True</Private>
5758
</Reference>
58-
<Reference Include="Cassette.Aspnet, Version=2.4.1.23587, Culture=neutral, processorArchitecture=MSIL">
59-
<SpecificVersion>False</SpecificVersion>
60-
<HintPath>..\packages\Cassette.Aspnet.2.4.1\lib\net40\Cassette.Aspnet.dll</HintPath>
59+
<Reference Include="Cassette.Aspnet, Version=2.4.2.13845, Culture=neutral, processorArchitecture=MSIL">
60+
<HintPath>..\packages\Cassette.Aspnet.2.4.2\lib\net40\Cassette.Aspnet.dll</HintPath>
61+
<Private>True</Private>
6162
</Reference>
62-
<Reference Include="Cassette.MSBuild, Version=2.4.1.23587, Culture=neutral, processorArchitecture=MSIL">
63-
<SpecificVersion>False</SpecificVersion>
64-
<HintPath>..\packages\Cassette.MSBuild.2.4.1\lib\net40\Cassette.MSBuild.dll</HintPath>
63+
<Reference Include="Cassette.MSBuild, Version=2.4.2.13846, Culture=neutral, processorArchitecture=MSIL">
64+
<HintPath>..\packages\Cassette.MSBuild.2.4.2\lib\net40\Cassette.MSBuild.dll</HintPath>
65+
<Private>True</Private>
6566
</Reference>
6667
<Reference Include="Cassette.Views, Version=2.4.2.13844, Culture=neutral, processorArchitecture=MSIL">
67-
<SpecificVersion>False</SpecificVersion>
68-
<HintPath>..\packages\Cassette.Views.2.4.1\lib\net40\Cassette.Views.dll</HintPath>
68+
<HintPath>..\packages\Cassette.Views.2.4.2\lib\net40\Cassette.Views.dll</HintPath>
69+
<Private>True</Private>
6970
</Reference>
7071
<Reference Include="JavaScriptEngineSwitcher.Core">
7172
<HintPath>..\packages\JavaScriptEngineSwitcher.Core.1.2.4\lib\net40\JavaScriptEngineSwitcher.Core.dll</HintPath>
@@ -121,8 +122,9 @@
121122
<Private>True</Private>
122123
<HintPath>..\packages\Microsoft.AspNet.WebPages.2.0.30506.0\lib\net40\System.Web.WebPages.Razor.dll</HintPath>
123124
</Reference>
124-
<Reference Include="WebActivatorEx">
125-
<HintPath>..\packages\WebActivatorEx.2.0.5\lib\net40\WebActivatorEx.dll</HintPath>
125+
<Reference Include="WebActivatorEx, Version=2.0.0.0, Culture=neutral, PublicKeyToken=7b26dc2a43f6a0d4, processorArchitecture=MSIL">
126+
<HintPath>..\packages\WebActivatorEx.2.1.0\lib\net40\WebActivatorEx.dll</HintPath>
127+
<Private>True</Private>
126128
</Reference>
127129
</ItemGroup>
128130
<ItemGroup>

src/React.Sample.Cassette/Web.config

+26-21
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@
55
-->
66

77
<configuration>
8-
<configSections>
9-
<section name="cassette" type="Cassette.CassetteConfigurationSection, Cassette" requirePermission="false" />
10-
</configSections>
8+
<configSections>
9+
<section name="cassette" type="Cassette.CassetteConfigurationSection, Cassette" requirePermission="false" />
10+
</configSections>
11+
1112
<appSettings>
1213
<add key="webpages:Version" value="2.0.0.0" />
1314
<add key="webpages:Enabled" value="false" />
@@ -26,35 +27,39 @@
2627
<add namespace="System.Web.Mvc.Html" />
2728
<add namespace="System.Web.Routing" />
2829
<add namespace="System.Web.WebPages" />
29-
<add namespace="Cassette.Views" />
30-
</namespaces>
30+
31+
<add namespace="Cassette.Views" /></namespaces>
3132
</pages>
32-
<httpModules>
33-
<add name="CassetteHttpModule" type="Cassette.Aspnet.CassetteHttpModule, Cassette.Aspnet" />
34-
</httpModules>
35-
<httpHandlers>
36-
<add path="cassette.axd" verb="*" type="Cassette.Aspnet.CassetteHttpHandler, Cassette.Aspnet" />
37-
</httpHandlers>
38-
</system.web>
33+
34+
35+
<httpModules>
36+
<add name="CassetteHttpModule" type="Cassette.Aspnet.CassetteHttpModule, Cassette.Aspnet" />
37+
</httpModules><httpHandlers>
38+
<add path="cassette.axd" verb="*" type="Cassette.Aspnet.CassetteHttpHandler, Cassette.Aspnet" />
39+
</httpHandlers></system.web>
3940

4041
<system.webServer>
4142
<validation validateIntegratedModeConfiguration="false" />
4243
<modules runAllManagedModulesForAllRequests="true">
43-
<add name="CassetteHttpModule" type="Cassette.Aspnet.CassetteHttpModule, Cassette.Aspnet" />
44-
</modules>
45-
<handlers>
46-
<add name="CassetteHttpHandler" path="cassette.axd" preCondition="integratedMode" verb="*" allowPathInfo="true" type="Cassette.Aspnet.CassetteHttpHandler, Cassette.Aspnet" />
47-
</handlers>
48-
</system.webServer>
49-
<!-- For configuration options: http://getcassette.net/documentation/v2/web-config -->
50-
<cassette cacheDirectory="cassette-cache" />
44+
45+
<add name="CassetteHttpModule" type="Cassette.Aspnet.CassetteHttpModule, Cassette.Aspnet" /></modules>
46+
47+
<handlers>
48+
<add name="CassetteHttpHandler" path="cassette.axd" preCondition="integratedMode" verb="*" allowPathInfo="true" type="Cassette.Aspnet.CassetteHttpHandler, Cassette.Aspnet" />
49+
</handlers></system.webServer>
50+
51+
5152

5253
<runtime>
5354
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
5455
<dependentAssembly>
5556
<assemblyIdentity name="MsieJavaScriptEngine" publicKeyToken="a3a2846a37ac0d3e" culture="neutral" />
5657
<bindingRedirect oldVersion="0.0.0.0-1.4.2.0" newVersion="1.4.2.0" />
5758
</dependentAssembly>
59+
<dependentAssembly>
60+
<assemblyIdentity name="AjaxMin" publicKeyToken="21ef50ce11b5d80f" culture="neutral" />
61+
<bindingRedirect oldVersion="0.0.0.0-5.14.5506.26196" newVersion="5.14.5506.26196" />
62+
</dependentAssembly>
5863
</assemblyBinding>
5964
</runtime>
60-
</configuration>
65+
<!-- For configuration options: http://getcassette.net/documentation/v2/web-config --><cassette cacheDirectory="cassette-cache" /></configuration>

0 commit comments

Comments
 (0)