Skip to content

Commit e6ce44a

Browse files
authored
Upgrade to JSPool 3.0 (#421)
* Upgrade to JSPool 3.0 * Add assembly redirects to MSBuild * Remove `ReturnEngineToPool` method from factory as it's no longer needed
1 parent e1809a0 commit e6ce44a

18 files changed

+142
-76
lines changed

build.proj

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ of patent rights can be found in the PATENTS file in the same directory.
1010
<Project ToolsVersion="4.0" DefaultTargets="Build;Test;Package" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
1111
<PropertyGroup>
1212
<Major>3</Major>
13-
<Minor>0</Minor>
14-
<Build>1</Build>
13+
<Minor>1</Minor>
14+
<Build>0</Build>
1515
<Revision>0</Revision>
1616
<DevNuGetServer>http://reactjs.net/packages/</DevNuGetServer>
1717
<MSBuildCommunityTasksPath>$(MSBuildProjectDirectory)\tools\MSBuildTasks</MSBuildCommunityTasksPath>

src/React.Core/IJavaScriptEngineFactory.cs

+3-9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
using System;
2-
using JavaScriptEngineSwitcher.Core;
1+
using JavaScriptEngineSwitcher.Core;
2+
using JSPool;
33

44
namespace React
55
{
@@ -25,12 +25,6 @@ public interface IJavaScriptEngineFactory
2525
/// Gets a JavaScript engine from the pool.
2626
/// </summary>
2727
/// <returns>The JavaScript engine</returns>
28-
IJsEngine GetEngine();
29-
30-
/// <summary>
31-
/// Returns an engine to the pool so it can be reused
32-
/// </summary>
33-
/// <param name="engine">Engine to return</param>
34-
void ReturnEngineToPool(IJsEngine engine);
28+
PooledJsEngine GetEngine();
3529
}
3630
}

src/React.Core/JavaScriptEngineFactory.cs

+1-15
Original file line numberDiff line numberDiff line change
@@ -223,26 +223,12 @@ public virtual void DisposeEngineForCurrentThread()
223223
/// Gets a JavaScript engine from the pool.
224224
/// </summary>
225225
/// <returns>The JavaScript engine</returns>
226-
public virtual IJsEngine GetEngine()
226+
public virtual PooledJsEngine GetEngine()
227227
{
228228
EnsureValidState();
229229
return _pool.GetEngine();
230230
}
231231

232-
/// <summary>
233-
/// Returns an engine to the pool so it can be reused
234-
/// </summary>
235-
/// <param name="engine">Engine to return</param>
236-
public virtual void ReturnEngineToPool(IJsEngine engine)
237-
{
238-
// This could be called from ReactEnvironment.Dispose if that class is disposed after
239-
// this class. Let's just ignore this if it's disposed.
240-
if (!_disposed)
241-
{
242-
_pool.ReturnEngineToPool(engine);
243-
}
244-
}
245-
246232
/// <summary>
247233
/// Gets a factory for the most appropriate JavaScript engine for the current environment.
248234
/// The first functioning JavaScript engine with the lowest priority will be used.

src/React.Core/React.Core.csproj

+6-6
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,16 @@
2626
</ItemGroup>
2727

2828
<ItemGroup>
29-
<PackageReference Include="JavaScriptEngineSwitcher.ChakraCore" Version="2.3.2" />
30-
<PackageReference Include="JavaScriptEngineSwitcher.Core" Version="2.2.0" />
31-
<PackageReference Include="JavaScriptEngineSwitcher.Msie" Version="2.3.2" />
32-
<PackageReference Include="JSPool" Version="2.0.1" />
33-
<PackageReference Include="MsieJavaScriptEngine" Version="2.1.2" />
29+
<PackageReference Include="JavaScriptEngineSwitcher.ChakraCore" Version="2.4.8" />
30+
<PackageReference Include="JavaScriptEngineSwitcher.Core" Version="2.4.9" />
31+
<PackageReference Include="JavaScriptEngineSwitcher.Msie" Version="2.4.9" />
32+
<PackageReference Include="JSPool" Version="3.0.1" />
33+
<PackageReference Include="MsieJavaScriptEngine" Version="2.2.2" />
3434
<PackageReference Include="Newtonsoft.Json" Version="9.0.1" />
3535
</ItemGroup>
3636

3737
<ItemGroup Condition=" '$(TargetFramework)' == 'net40' ">
38-
<PackageReference Include="JavaScriptEngineSwitcher.V8" Version="2.2.0" />
38+
<PackageReference Include="JavaScriptEngineSwitcher.V8" Version="2.4.2" />
3939
<PackageReference Include="VroomJs" Version="1.2.3" />
4040
<Reference Include="System.Runtime.Caching" />
4141
<Reference Include="System" />

src/React.Core/ReactEnvironment.cs

+5-4
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
using System.Threading;
1616
using JavaScriptEngineSwitcher.Core;
1717
using JavaScriptEngineSwitcher.Core.Helpers;
18+
using JSPool;
1819
using Newtonsoft.Json;
1920
using React.Exceptions;
2021

@@ -68,7 +69,7 @@ public class ReactEnvironment : IReactEnvironment, IDisposable
6869
/// Contains an engine acquired from a pool of engines. Only used if
6970
/// <see cref="IReactSiteConfiguration.ReuseJavaScriptEngines"/> is enabled.
7071
/// </summary>
71-
protected Lazy<IJsEngine> _engineFromPool;
72+
protected Lazy<PooledJsEngine> _engineFromPool;
7273

7374
/// <summary>
7475
/// List of all components instantiated in this environment
@@ -108,7 +109,7 @@ IFileCacheHash fileCacheHash
108109
_babelTransformer = new Lazy<IBabel>(() =>
109110
new Babel(this, _cache, _fileSystem, _fileCacheHash, _config)
110111
);
111-
_engineFromPool = new Lazy<IJsEngine>(() => _engineFactory.GetEngine());
112+
_engineFromPool = new Lazy<PooledJsEngine>(() => _engineFactory.GetEngine());
112113
}
113114

114115
/// <summary>
@@ -399,8 +400,8 @@ public void ReturnEngineToPool()
399400
{
400401
if (_engineFromPool.IsValueCreated)
401402
{
402-
_engineFactory.ReturnEngineToPool(_engineFromPool.Value);
403-
_engineFromPool = new Lazy<IJsEngine>(() => _engineFactory.GetEngine());
403+
_engineFromPool.Value.Dispose();
404+
_engineFromPool = new Lazy<PooledJsEngine>(() => _engineFactory.GetEngine());
404405
}
405406
}
406407

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
/*
2+
* Copyright (c) 2017-Present, Facebook, Inc.
3+
* All rights reserved.
4+
*
5+
* This source code is licensed under the BSD-style license found in the
6+
* LICENSE file in the root directory of this source tree. An additional grant
7+
* of patent rights can be found in the PATENTS file in the same directory.
8+
*/
9+
10+
using System;
11+
using System.Collections.Generic;
12+
using System.Diagnostics;
13+
using System.IO;
14+
using System.Reflection;
15+
16+
namespace React.MSBuild
17+
{
18+
/// <summary>
19+
/// Hacks around the fact that it's not possible to do assembly binding redirects in MSBuild.
20+
///
21+
/// https://github.com/Microsoft/msbuild/issues/1309
22+
/// http://blog.slaks.net/2013-12-25/redirecting-assembly-loads-at-runtime/
23+
/// </summary>
24+
public static class AssemblyBindingRedirect
25+
{
26+
/// <summary>
27+
/// Redirects that have been configured
28+
/// </summary>
29+
private static readonly Dictionary<string, Version> _redirects = new Dictionary<string, Version>();
30+
31+
static AssemblyBindingRedirect()
32+
{
33+
// This is in a static constructor because it needs to run as early as possible
34+
ConfigureRedirect("JavaScriptEngineSwitcher.Core");
35+
AppDomain.CurrentDomain.AssemblyResolve += ResolveAssembly;
36+
}
37+
38+
/// <summary>
39+
/// Enables assembly binding redirects
40+
/// </summary>
41+
public static void Enable()
42+
{
43+
// Intentionally empty. This is just meant to ensure the static constructor
44+
// has run.
45+
}
46+
47+
/// <summary>
48+
/// Configures a redirect for the specified assembly. Redirects to the version in the bin directory.
49+
/// </summary>
50+
/// <param name="name">Name of the assembly to redirect</param>
51+
private static void ConfigureRedirect(string name)
52+
{
53+
var currentAssemblyPath = Assembly.GetExecutingAssembly().Location;
54+
var redirectAssemblyPath = Path.Combine(
55+
Path.GetDirectoryName(currentAssemblyPath),
56+
name + ".dll"
57+
);
58+
59+
try
60+
{
61+
var realAssembly = Assembly.LoadFile(redirectAssemblyPath);
62+
var version = realAssembly.GetName().Version;
63+
_redirects[name] = version;
64+
}
65+
catch (Exception ex)
66+
{
67+
Trace.WriteLine("Warning: Could not determine version of " + name + " to use! " + ex.Message);
68+
}
69+
}
70+
71+
/// <summary>
72+
/// Overrides assembly resolution to redirect if necessary.
73+
/// </summary>
74+
private static Assembly ResolveAssembly(object sender, ResolveEventArgs args)
75+
{
76+
var requestedAssembly = new AssemblyName(args.Name);
77+
78+
if (_redirects.ContainsKey(requestedAssembly.Name) && requestedAssembly.Version != _redirects[requestedAssembly.Name])
79+
{
80+
requestedAssembly.Version = _redirects[requestedAssembly.Name];
81+
return Assembly.Load(requestedAssembly);
82+
}
83+
return null;
84+
}
85+
}
86+
}

src/React.MSBuild/MSBuildHost.cs

+3
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
using System;
1111
using System.Diagnostics;
12+
using System.Reflection;
1213

1314
namespace React.MSBuild
1415
{
@@ -36,6 +37,8 @@ public static bool EnsureInitialized()
3637
/// <returns></returns>
3738
private static bool Initialize()
3839
{
40+
AssemblyBindingRedirect.Enable();
41+
3942
// All "per-request" registrations should be singletons in MSBuild, since there's no
4043
// such thing as a "request"
4144
Initializer.Initialize(requestLifetimeRegistration: registration => registration.AsSingleton());

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

+2-3
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,8 @@
6868
<HintPath>..\packages\Cassette.Views.2.4.2\lib\net40\Cassette.Views.dll</HintPath>
6969
<Private>True</Private>
7070
</Reference>
71-
<Reference Include="JavaScriptEngineSwitcher.Core, Version=2.2.0.0, Culture=neutral, PublicKeyToken=c608b2a8cc9e4472, processorArchitecture=MSIL">
72-
<HintPath>..\packages\JavaScriptEngineSwitcher.Core.2.2.0\lib\net40-client\JavaScriptEngineSwitcher.Core.dll</HintPath>
73-
<Private>True</Private>
71+
<Reference Include="JavaScriptEngineSwitcher.Core, Version=2.4.9.0, Culture=neutral, PublicKeyToken=c608b2a8cc9e4472, processorArchitecture=MSIL">
72+
<HintPath>..\packages\JavaScriptEngineSwitcher.Core.2.4.9\lib\net40-client\JavaScriptEngineSwitcher.Core.dll</HintPath>
7473
</Reference>
7574
<Reference Include="Microsoft.CSharp" />
7675
<Reference Include="System" />

src/React.Sample.Cassette/Web.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
</dependentAssembly>
6363
<dependentAssembly>
6464
<assemblyIdentity name="JavaScriptEngineSwitcher.Core" publicKeyToken="c608b2a8cc9e4472" culture="neutral" />
65-
<bindingRedirect oldVersion="0.0.0.0-2.2.0.0" newVersion="2.2.0.0" />
65+
<bindingRedirect oldVersion="0.0.0.0-2.4.9.0" newVersion="2.4.9.0" />
6666
</dependentAssembly>
6767
</assemblyBinding>
6868
</runtime>

src/React.Sample.Cassette/packages.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<package id="Cassette.Aspnet" version="2.4.2" targetFramework="net40" />
66
<package id="Cassette.MSBuild" version="2.4.2" targetFramework="net40" />
77
<package id="Cassette.Views" version="2.4.2" targetFramework="net40" />
8-
<package id="JavaScriptEngineSwitcher.Core" version="2.2.0" targetFramework="net40" />
8+
<package id="JavaScriptEngineSwitcher.Core" version="2.4.9" targetFramework="net40" />
99
<package id="Microsoft.AspNet.Mvc" version="4.0.30506.0" targetFramework="net40" />
1010
<package id="Microsoft.AspNet.Mvc.FixedDisplayModes" version="1.0.0" targetFramework="net40" />
1111
<package id="Microsoft.AspNet.Razor" version="2.0.30506.0" targetFramework="net40" />

src/React.Sample.Mvc4/React.Sample.Mvc4.csproj

+10-15
Original file line numberDiff line numberDiff line change
@@ -57,26 +57,21 @@
5757
<HintPath>..\packages\Antlr.3.5.0.2\lib\Antlr3.Runtime.dll</HintPath>
5858
<Private>True</Private>
5959
</Reference>
60-
<Reference Include="ClearScript, Version=5.4.8.0, Culture=neutral, PublicKeyToken=935d0c957da47c73, processorArchitecture=MSIL">
61-
<HintPath>..\packages\JavaScriptEngineSwitcher.V8.2.2.0\lib\net45\ClearScript.dll</HintPath>
62-
<Private>True</Private>
60+
<Reference Include="ClearScript, Version=5.4.9.0, Culture=neutral, PublicKeyToken=935d0c957da47c73, processorArchitecture=MSIL">
61+
<HintPath>..\packages\JavaScriptEngineSwitcher.V8.2.4.2\lib\net45\ClearScript.dll</HintPath>
6362
</Reference>
64-
<Reference Include="JavaScriptEngineSwitcher.Core, Version=2.2.0.0, Culture=neutral, PublicKeyToken=c608b2a8cc9e4472, processorArchitecture=MSIL">
65-
<HintPath>..\packages\JavaScriptEngineSwitcher.Core.2.2.0\lib\net45\JavaScriptEngineSwitcher.Core.dll</HintPath>
66-
<Private>True</Private>
63+
<Reference Include="JavaScriptEngineSwitcher.Core, Version=2.4.9.0, Culture=neutral, PublicKeyToken=c608b2a8cc9e4472, processorArchitecture=MSIL">
64+
<HintPath>..\packages\JavaScriptEngineSwitcher.Core.2.4.9\lib\net45\JavaScriptEngineSwitcher.Core.dll</HintPath>
6765
</Reference>
68-
<Reference Include="JavaScriptEngineSwitcher.Msie, Version=2.3.2.0, Culture=neutral, PublicKeyToken=c608b2a8cc9e4472, processorArchitecture=MSIL">
69-
<HintPath>..\packages\JavaScriptEngineSwitcher.Msie.2.3.2\lib\net45\JavaScriptEngineSwitcher.Msie.dll</HintPath>
70-
<Private>True</Private>
66+
<Reference Include="JavaScriptEngineSwitcher.Msie, Version=2.4.9.0, Culture=neutral, PublicKeyToken=c608b2a8cc9e4472, processorArchitecture=MSIL">
67+
<HintPath>..\packages\JavaScriptEngineSwitcher.Msie.2.4.9\lib\net45\JavaScriptEngineSwitcher.Msie.dll</HintPath>
7168
</Reference>
72-
<Reference Include="JavaScriptEngineSwitcher.V8, Version=2.2.0.0, Culture=neutral, PublicKeyToken=c608b2a8cc9e4472, processorArchitecture=MSIL">
73-
<HintPath>..\packages\JavaScriptEngineSwitcher.V8.2.2.0\lib\net45\JavaScriptEngineSwitcher.V8.dll</HintPath>
74-
<Private>True</Private>
69+
<Reference Include="JavaScriptEngineSwitcher.V8, Version=2.4.2.0, Culture=neutral, PublicKeyToken=c608b2a8cc9e4472, processorArchitecture=MSIL">
70+
<HintPath>..\packages\JavaScriptEngineSwitcher.V8.2.4.2\lib\net45\JavaScriptEngineSwitcher.V8.dll</HintPath>
7571
</Reference>
7672
<Reference Include="Microsoft.CSharp" />
77-
<Reference Include="MsieJavaScriptEngine, Version=2.1.2.0, Culture=neutral, PublicKeyToken=a3a2846a37ac0d3e, processorArchitecture=MSIL">
78-
<HintPath>..\packages\MsieJavaScriptEngine.2.1.2\lib\net45\MsieJavaScriptEngine.dll</HintPath>
79-
<Private>True</Private>
73+
<Reference Include="MsieJavaScriptEngine, Version=2.2.2.0, Culture=neutral, PublicKeyToken=a3a2846a37ac0d3e, processorArchitecture=MSIL">
74+
<HintPath>..\packages\MsieJavaScriptEngine.2.2.2\lib\net45\MsieJavaScriptEngine.dll</HintPath>
8075
</Reference>
8176
<Reference Include="Newtonsoft.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
8277
<HintPath>..\packages\Newtonsoft.Json.9.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>

src/React.Sample.Mvc4/Web.config

+5-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
</dependentAssembly>
7575
<dependentAssembly>
7676
<assemblyIdentity name="JavaScriptEngineSwitcher.Core" publicKeyToken="c608b2a8cc9e4472" culture="neutral" />
77-
<bindingRedirect oldVersion="0.0.0.0-2.2.0.0" newVersion="2.2.0.0" />
77+
<bindingRedirect oldVersion="0.0.0.0-2.4.9.0" newVersion="2.4.9.0" />
7878
</dependentAssembly>
7979
<dependentAssembly>
8080
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
@@ -92,6 +92,10 @@
9292
<assemblyIdentity name="JavaScriptEngineSwitcher.Msie" publicKeyToken="c608b2a8cc9e4472" culture="neutral" />
9393
<bindingRedirect oldVersion="0.0.0.0-2.3.2.0" newVersion="2.3.2.0" />
9494
</dependentAssembly>
95+
<dependentAssembly>
96+
<assemblyIdentity name="MsieJavaScriptEngine" publicKeyToken="a3a2846a37ac0d3e" culture="neutral" />
97+
<bindingRedirect oldVersion="0.0.0.0-2.2.2.0" newVersion="2.2.2.0" />
98+
</dependentAssembly>
9599
</assemblyBinding>
96100
</runtime>
97101

src/React.Sample.Mvc4/packages.config

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
33
<package id="Antlr" version="3.5.0.2" targetFramework="net45" />
4-
<package id="JavaScriptEngineSwitcher.Core" version="2.2.0" targetFramework="net45" />
5-
<package id="JavaScriptEngineSwitcher.Msie" version="2.3.2" targetFramework="net45" />
6-
<package id="JavaScriptEngineSwitcher.V8" version="2.2.0" targetFramework="net45" />
4+
<package id="JavaScriptEngineSwitcher.Core" version="2.4.9" targetFramework="net45" />
5+
<package id="JavaScriptEngineSwitcher.Msie" version="2.4.9" targetFramework="net45" />
6+
<package id="JavaScriptEngineSwitcher.V8" version="2.4.2" targetFramework="net45" />
77
<package id="Microsoft.AspNet.Mvc" version="4.0.30506.0" targetFramework="net4" />
88
<package id="Microsoft.AspNet.Razor" version="2.0.30506.0" targetFramework="net4" />
99
<package id="Microsoft.AspNet.Web.Optimization" version="1.1.3" targetFramework="net4" />
1010
<package id="Microsoft.AspNet.WebPages" version="2.0.30506.0" targetFramework="net4" />
1111
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net4" />
12-
<package id="MsieJavaScriptEngine" version="2.1.2" targetFramework="net45" />
12+
<package id="MsieJavaScriptEngine" version="2.2.2" targetFramework="net45" />
1313
<package id="Newtonsoft.Json" version="9.0.1" targetFramework="net45" />
1414
<package id="WebActivatorEx" version="2.2.0" targetFramework="net45" />
1515
<package id="WebGrease" version="1.6.0" targetFramework="net45" />

src/React.Sample.Mvc6/React.Sample.Mvc6.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
</ItemGroup>
3838

3939
<ItemGroup Condition=" '$(TargetFramework)' == 'net451' ">
40-
<PackageReference Include="JavaScriptEngineSwitcher.V8" Version="2.2.0" />
40+
<PackageReference Include="JavaScriptEngineSwitcher.V8" Version="2.4.2" />
4141
<Reference Include="System" />
4242
<Reference Include="Microsoft.CSharp" />
4343
</ItemGroup>

src/React.Sample.Webpack/React.Sample.Webpack.csproj

+6-9
Original file line numberDiff line numberDiff line change
@@ -50,17 +50,14 @@
5050
<NoWarn>1607</NoWarn>
5151
</PropertyGroup>
5252
<ItemGroup>
53-
<Reference Include="ClearScript, Version=5.4.8.0, Culture=neutral, PublicKeyToken=935d0c957da47c73, processorArchitecture=MSIL">
54-
<HintPath>..\packages\JavaScriptEngineSwitcher.V8.2.2.0\lib\net40-client\ClearScript.dll</HintPath>
55-
<Private>True</Private>
53+
<Reference Include="ClearScript, Version=5.4.9.0, Culture=neutral, PublicKeyToken=935d0c957da47c73, processorArchitecture=MSIL">
54+
<HintPath>..\packages\JavaScriptEngineSwitcher.V8.2.4.2\lib\net40-client\ClearScript.dll</HintPath>
5655
</Reference>
57-
<Reference Include="JavaScriptEngineSwitcher.Core, Version=2.2.0.0, Culture=neutral, PublicKeyToken=c608b2a8cc9e4472, processorArchitecture=MSIL">
58-
<HintPath>..\packages\JavaScriptEngineSwitcher.Core.2.2.0\lib\net40-client\JavaScriptEngineSwitcher.Core.dll</HintPath>
59-
<Private>True</Private>
56+
<Reference Include="JavaScriptEngineSwitcher.Core, Version=2.4.9.0, Culture=neutral, PublicKeyToken=c608b2a8cc9e4472, processorArchitecture=MSIL">
57+
<HintPath>..\packages\JavaScriptEngineSwitcher.Core.2.4.9\lib\net40-client\JavaScriptEngineSwitcher.Core.dll</HintPath>
6058
</Reference>
61-
<Reference Include="JavaScriptEngineSwitcher.V8, Version=2.2.0.0, Culture=neutral, PublicKeyToken=c608b2a8cc9e4472, processorArchitecture=MSIL">
62-
<HintPath>..\packages\JavaScriptEngineSwitcher.V8.2.2.0\lib\net40-client\JavaScriptEngineSwitcher.V8.dll</HintPath>
63-
<Private>True</Private>
59+
<Reference Include="JavaScriptEngineSwitcher.V8, Version=2.4.2.0, Culture=neutral, PublicKeyToken=c608b2a8cc9e4472, processorArchitecture=MSIL">
60+
<HintPath>..\packages\JavaScriptEngineSwitcher.V8.2.4.2\lib\net40-client\JavaScriptEngineSwitcher.V8.dll</HintPath>
6461
</Reference>
6562
<Reference Include="Microsoft.CSharp" />
6663
<Reference Include="System" />

src/React.Sample.Webpack/Web.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
</dependentAssembly>
5757
<dependentAssembly>
5858
<assemblyIdentity name="JavaScriptEngineSwitcher.Core" publicKeyToken="c608b2a8cc9e4472" culture="neutral" />
59-
<bindingRedirect oldVersion="0.0.0.0-2.2.0.0" newVersion="2.2.0.0" />
59+
<bindingRedirect oldVersion="0.0.0.0-2.4.9.0" newVersion="2.4.9.0" />
6060
</dependentAssembly>
6161
<dependentAssembly>
6262
<assemblyIdentity name="JavaScriptEngineSwitcher.V8" publicKeyToken="c608b2a8cc9e4472" culture="neutral" />

src/React.Sample.Webpack/packages.config

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="JavaScriptEngineSwitcher.Core" version="2.2.0" targetFramework="net40" />
4-
<package id="JavaScriptEngineSwitcher.V8" version="2.2.0" targetFramework="net40" />
3+
<package id="JavaScriptEngineSwitcher.Core" version="2.4.9" targetFramework="net40" />
4+
<package id="JavaScriptEngineSwitcher.V8" version="2.4.2" targetFramework="net40" />
55
<package id="Microsoft.AspNet.Mvc" version="4.0.30506.0" targetFramework="net40" />
66
<package id="Microsoft.AspNet.Razor" version="2.0.30506.0" targetFramework="net40" />
77
<package id="Microsoft.AspNet.WebPages" version="2.0.30506.0" targetFramework="net40" />

0 commit comments

Comments
 (0)