Skip to content

Commit 5882926

Browse files
committed
Version 1.1.10:
1. In JavaScriptEngineSwitcher.V8 added support of Microsoft ClearScript.V8 version of July 5, 2014; 2. In JavaScriptEngineSwitcher.Jint added support of Jint version 2.2.0.
1 parent 2228ed8 commit 5882926

File tree

15 files changed

+40
-34
lines changed

15 files changed

+40
-34
lines changed

Binaries/ClearScript/ClearScript.dll

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
Binary file not shown.

Binaries/Jint/Jint.dll

-220 KB
Binary file not shown.

Binaries/Jint/LICENSE.txt

Lines changed: 0 additions & 12 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Change log
22
==========
33

4+
## July 10, 2014 - v1.1.10
5+
6+
* In JavaScriptEngineSwitcher.V8 added support of Microsoft ClearScript.V8 version of July 5, 2014
7+
* In JavaScriptEngineSwitcher.Jint added support of Jint version 2.2.0
8+
49
## June 14, 2014 - v1.1.9
510

611
* In JavaScriptEngineSwitcher.V8 added support of Microsoft ClearScript.V8 version of June 10, 2014

JavaScriptEngineSwitcher.Jint/JavaScriptEngineSwitcher.Jint.csproj

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
<AssemblyName>JavaScriptEngineSwitcher.Jint</AssemblyName>
1212
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
14+
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
15+
<RestorePackages>true</RestorePackages>
1416
</PropertyGroup>
1517
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1618
<DebugSymbols>true</DebugSymbols>
@@ -38,7 +40,7 @@
3840
<ItemGroup>
3941
<Reference Include="Jint, Version=2.1.0.0, Culture=neutral, PublicKeyToken=2e92ba9c8d81157f, processorArchitecture=MSIL">
4042
<SpecificVersion>False</SpecificVersion>
41-
<HintPath>..\Binaries\Jint\Jint.dll</HintPath>
43+
<HintPath>..\packages\Jint.2.2.0\lib\portable-net40+sl50+win+wp80\Jint.dll</HintPath>
4244
</Reference>
4345
<Reference Include="System" />
4446
<Reference Include="System.Core" />
@@ -52,6 +54,7 @@
5254
<None Include="..\JavaScriptEngineSwitcher.snk">
5355
<Link>JavaScriptEngineSwitcher.snk</Link>
5456
</None>
57+
<None Include="packages.config" />
5558
</ItemGroup>
5659
<ItemGroup>
5760
<ProjectReference Include="..\JavaScriptEngineSwitcher.Core\JavaScriptEngineSwitcher.Core.csproj">
@@ -60,6 +63,13 @@
6063
</ProjectReference>
6164
</ItemGroup>
6265
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
66+
<Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
67+
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
68+
<PropertyGroup>
69+
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
70+
</PropertyGroup>
71+
<Error Condition="!Exists('$(SolutionDir)\.nuget\NuGet.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\.nuget\NuGet.targets'))" />
72+
</Target>
6373
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
6474
Other similar extension points exist, see Microsoft.Common.targets.
6575
<Target Name="BeforeBuild">

JavaScriptEngineSwitcher.Jint/JintJsEngine.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public sealed class JintJsEngine : JsEngineBase
2626
/// <summary>
2727
/// Version of original JavaScript engine
2828
/// </summary>
29-
private const string ENGINE_VERSION = "Jun 5, 2014";
29+
private const string ENGINE_VERSION = "2.2.0";
3030

3131
/// <summary>
3232
/// Jint JS engine

JavaScriptEngineSwitcher.Jint/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
[assembly: ComVisible(false)]
1414
[assembly: Guid("4b51319e-014f-4731-8a80-15b5c58f3a72")]
1515

16-
[assembly: AssemblyVersion("1.1.9.0")]
17-
[assembly: AssemblyFileVersion("1.1.9.0")]
16+
[assembly: AssemblyVersion("1.1.10.0")]
17+
[assembly: AssemblyFileVersion("1.1.10.0")]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<packages>
3+
<package id="Jint" version="2.2.0" targetFramework="net40" />
4+
</packages>

0 commit comments

Comments
 (0)