Skip to content

Commit 2f2f405

Browse files
committed
Version 3.0.0 RC 2
1 parent 58c187d commit 2f2f405

File tree

31 files changed

+50
-44
lines changed

31 files changed

+50
-44
lines changed

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
11
Change log
22
==========
33

4+
## v3.0.0 RC 2 - December 4, 2018
5+
* `GetSourceFragmentFromCode` and `GetSourceFragmentFromLine` methods of `JsErrorHelpers` class were replaced by the `GetTextFragment` and `GetTextFragmentFromLine` methods of `TextHelpers` class
6+
* Part of the auxiliary code was moved to external libraries: [PolyfillsForOldDotNet](https://github.com/Taritsyn/PolyfillsForOldDotNet) and [AdvancedStringBuilder](https://github.com/Taritsyn/AdvancedStringBuilder)
7+
* Removed a unnecessary `net471` targets
8+
* In JavaScriptEngineSwitcher.Msie added support of MSIE JavaScript Engine version 3.0.0 RC 2
9+
* In JavaScriptEngineSwitcher.V8 added support of Microsoft ClearScript.V8 version 5.5.4 (support of V8 version 7.0.276.42)
10+
* In JavaScriptEngineSwitcher.ChakraCore:
11+
* ChakraCore was updated to version 1.11.3
12+
* In the `NativeMethods` class for the `netstandard` and `netcoreapp` targets was changed a calling convention from `StdCall` to `Cdecl`
13+
* Charset was explicitly specified in the `JsCreateString`, `JsCopyString` and `JsCreatePropertyId` methods of `NativeMethods` class
14+
* Added a `netcoreapp2.1` target
15+
* In JavaScriptEngineSwitcher.NiL added support of NiL.JS version 2.5.1282
16+
417
## v3.0.0 RC 1 - September 19, 2018
518
* Fixed a [error #59](https://github.com/Taritsyn/JavaScriptEngineSwitcher/issues/59) “Unhandled exception when JS exception is thrown”
619
* In JavaScriptEngineSwitcher.Msie:

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,22 @@ The supported .NET types are as follows:
1515
## Installation
1616
This library can be installed through NuGet:
1717

18-
* [JS Engine Switcher: Core](http://nuget.org/packages/JavaScriptEngineSwitcher.Core) (supports .NET Framework 4.0 Client, .NET Framework 4.5, .NET Framework 4.7.1, .NET Standard 1.3 and .NET Standard 2.0)
19-
* [JS Engine Switcher: MS Dependency Injection](http://nuget.org/packages/JavaScriptEngineSwitcher.Extensions.MsDependencyInjection) (supports .NET Framework 4.5, .NET Framework 4.7.1, .NET Standard 1.3 and .NET Standard 2.0)
20-
* [JS Engine Switcher: MSIE](http://nuget.org/packages/JavaScriptEngineSwitcher.Msie) (supports .NET Framework 4.0 Client, .NET Framework 4.5, .NET Framework 4.7.1, .NET Standard 1.3 and .NET Standard 2.0)
21-
* [JS Engine Switcher: V8](http://nuget.org/packages/JavaScriptEngineSwitcher.V8) (supports .NET Framework 4.5 and .NET Framework 4.7.1)
18+
* [JS Engine Switcher: Core](http://nuget.org/packages/JavaScriptEngineSwitcher.Core) (supports .NET Framework 4.0 Client, .NET Framework 4.5, .NET Standard 1.3 and .NET Standard 2.0)
19+
* [JS Engine Switcher: MS Dependency Injection](http://nuget.org/packages/JavaScriptEngineSwitcher.Extensions.MsDependencyInjection) (supports .NET Framework 4.5, .NET Standard 1.3 and .NET Standard 2.0)
20+
* [JS Engine Switcher: MSIE](http://nuget.org/packages/JavaScriptEngineSwitcher.Msie) (supports .NET Framework 4.0 Client, .NET Framework 4.5, .NET Standard 1.3 and .NET Standard 2.0)
21+
* [JS Engine Switcher: V8](http://nuget.org/packages/JavaScriptEngineSwitcher.V8) (supports .NET Framework 4.5)
2222
* [Windows (x86)](http://nuget.org/packages/JavaScriptEngineSwitcher.V8.Native.win-x86)
2323
* [Windows (x64)](http://nuget.org/packages/JavaScriptEngineSwitcher.V8.Native.win-x64)
24-
* [JS Engine Switcher: Jurassic](http://nuget.org/packages/JavaScriptEngineSwitcher.Jurassic) (supports .NET Framework 4.0 Client, .NET Framework 4.5, .NET Framework 4.7.1 and .NET Standard 2.0)
25-
* [JS Engine Switcher: Jint](http://nuget.org/packages/JavaScriptEngineSwitcher.Jint) (supports .NET Framework 4.0 Client, .NET Framework 4.5, .NET Framework 4.7.1, .NET Standard 1.3 and .NET Standard 2.0)
26-
* [JS Engine Switcher: ChakraCore](http://nuget.org/packages/JavaScriptEngineSwitcher.ChakraCore) (supports .NET Framework 4.0 Client, .NET Framework 4.5, .NET Framework 4.7.1, .NET Standard 1.3 and .NET Standard 2.0)
24+
* [JS Engine Switcher: Jurassic](http://nuget.org/packages/JavaScriptEngineSwitcher.Jurassic) (supports .NET Framework 4.0 Client, .NET Framework 4.5 and .NET Standard 2.0)
25+
* [JS Engine Switcher: Jint](http://nuget.org/packages/JavaScriptEngineSwitcher.Jint) (supports .NET Framework 4.0 Client, .NET Framework 4.5, .NET Standard 1.3 and .NET Standard 2.0)
26+
* [JS Engine Switcher: ChakraCore](http://nuget.org/packages/JavaScriptEngineSwitcher.ChakraCore) (supports .NET Framework 4.0 Client, .NET Framework 4.5, .NET Framework 4.7.1, .NET Standard 1.3, .NET Standard 2.0 and .NET Core App 2.1)
2727
* [Windows (x86)](http://nuget.org/packages/JavaScriptEngineSwitcher.ChakraCore.Native.win-x86)
2828
* [Windows (x64)](http://nuget.org/packages/JavaScriptEngineSwitcher.ChakraCore.Native.win-x64)
2929
* [Windows (ARM)](http://nuget.org/packages/JavaScriptEngineSwitcher.ChakraCore.Native.win-arm)
3030
* [Linux (x64)](http://nuget.org/packages/JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64)
3131
* [OS X (x64)](http://nuget.org/packages/JavaScriptEngineSwitcher.ChakraCore.Native.osx-x64)
3232
* [JS Engine Switcher: Vroom](http://nuget.org/packages/JavaScriptEngineSwitcher.Vroom) (supports .NET Framework 4.0 Client, .NET Framework 4.5, .NET Framework 4.7.1, .NET Standard 1.6 and .NET Standard 2.0)
33-
* [JS Engine Switcher: NiL](http://nuget.org/packages/JavaScriptEngineSwitcher.NiL) (supports .NET Framework 4.0 Client, .NET Framework 4.5, .NET Framework 4.7.1, .NET Standard 1.3 and .NET Standard 2.0)
33+
* [JS Engine Switcher: NiL](http://nuget.org/packages/JavaScriptEngineSwitcher.NiL) (supports .NET Framework 4.0 Client, .NET Framework 4.5, .NET Standard 1.3 and .NET Standard 2.0)
3434

3535
If you have used the JavaScript Engine Switcher version 2.X, then I recommend to first read [“How to upgrade applications to version 3.X”](https://github.com/Taritsyn/JavaScriptEngineSwitcher/wiki/How-to-upgrade-applications-to-version-3.X) section of the documentation.
3636

samples/JavaScriptEngineSwitcher.Sample.AspNet4.Mvc4/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "jsengineswitcher.sample.aspnet4.mvc4",
33
"private": true,
4-
"version": "3.0.0-rc1",
4+
"version": "3.0.0-rc2",
55
"devDependencies": {
66
"gulp": "3.9.1",
77
"del": "3.0.0",

samples/JavaScriptEngineSwitcher.Sample.AspNetCore1.Mvc1/JavaScriptEngineSwitcher.Sample.AspNetCore1.Mvc1.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Product>JS Engine Switcher: Sample ASP.NET Core 1.0 MVC 1 Site</Product>
55
<VersionPrefix>3.0.0</VersionPrefix>
6-
<VersionSuffix>rc1</VersionSuffix>
6+
<VersionSuffix>rc2</VersionSuffix>
77
<TargetFramework>netcoreapp1.0</TargetFramework>
88
<RuntimeFrameworkVersion>1.0.13</RuntimeFrameworkVersion>
99
<OutputType>Exe</OutputType>

samples/JavaScriptEngineSwitcher.Sample.AspNetCore1.Mvc1/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "jsengineswitcher.sample.aspnetcore1.mvc1",
33
"private": true,
4-
"version": "3.0.0-rc1",
4+
"version": "3.0.0-rc2",
55
"devDependencies": {
66
"gulp": "3.9.1",
77
"del": "3.0.0",

samples/JavaScriptEngineSwitcher.Sample.AspNetCore1Full.Mvc1/JavaScriptEngineSwitcher.Sample.AspNetCore1Full.Mvc1.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Product>JS Engine Switcher: Sample ASP.NET Core 1.0 Full MVC 1 Site</Product>
55
<VersionPrefix>3.0.0</VersionPrefix>
6-
<VersionSuffix>rc1</VersionSuffix>
6+
<VersionSuffix>rc2</VersionSuffix>
77
<TargetFramework>net451</TargetFramework>
88
<OutputType>Exe</OutputType>
99
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>

samples/JavaScriptEngineSwitcher.Sample.AspNetCore1Full.Mvc1/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "jsengineswitcher.sample.aspnetcore1full.mvc1",
33
"private": true,
4-
"version": "3.0.0-rc1",
4+
"version": "3.0.0-rc2",
55
"devDependencies": {
66
"gulp": "3.9.1",
77
"del": "3.0.0",

samples/JavaScriptEngineSwitcher.Sample.AspNetCore2.Mvc2/JavaScriptEngineSwitcher.Sample.AspNetCore2.Mvc2.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Product>JS Engine Switcher: Sample ASP.NET Core 2.0 MVC 2 Site</Product>
55
<VersionPrefix>3.0.0</VersionPrefix>
6-
<VersionSuffix>rc1</VersionSuffix>
6+
<VersionSuffix>rc2</VersionSuffix>
77
<TargetFramework>netcoreapp2.0</TargetFramework>
88
<OutputType>Exe</OutputType>
99
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>

samples/JavaScriptEngineSwitcher.Sample.AspNetCore2.Mvc2/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "jsengineswitcher.sample.aspnetcore2.mvc2",
33
"private": true,
4-
"version": "3.0.0-rc1",
4+
"version": "3.0.0-rc2",
55
"devDependencies": {
66
"gulp": "3.9.1",
77
"del": "3.0.0",

samples/JavaScriptEngineSwitcher.Sample.Logic/JavaScriptEngineSwitcher.Sample.Logic.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Product>JS Engine Switcher: Logic for Samples</Product>
55
<VersionPrefix>3.0.0</VersionPrefix>
6-
<VersionSuffix>rc1</VersionSuffix>
6+
<VersionSuffix>rc2</VersionSuffix>
77
<TargetFrameworks>net40;net451;net471;netstandard1.6;netstandard2.0</TargetFrameworks>
88
<NetStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard1.6' ">1.6.0</NetStandardImplicitPackageVersion>
99
<OutputType>Library</OutputType>

samples/JavaScriptEngineSwitcher.Sample.Resources/JavaScriptEngineSwitcher.Sample.Resources.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Product>JS Engine Switcher: Resources for Samples</Product>
55
<VersionPrefix>3.0.0</VersionPrefix>
6-
<VersionSuffix>rc1</VersionSuffix>
6+
<VersionSuffix>rc2</VersionSuffix>
77
<TargetFrameworks>net40-client;net45;net471;netstandard1.3;netstandard2.0</TargetFrameworks>
88
<NetStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard1.3' ">1.6.0</NetStandardImplicitPackageVersion>
99
<OutputType>Library</OutputType>

src/JavaScriptEngineSwitcher.ChakraCore/JavaScriptEngineSwitcher.ChakraCore.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Product>JS Engine Switcher: ChakraCore</Product>
55
<VersionPrefix>3.0.0</VersionPrefix>
6-
<VersionSuffix>rc1</VersionSuffix>
6+
<VersionSuffix>rc2</VersionSuffix>
77
<TargetFrameworks>net40-client;net45;net471;netstandard1.3;netstandard2.0;netcoreapp2.1</TargetFrameworks>
88
<NetStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard1.3' ">1.6.0</NetStandardImplicitPackageVersion>
99
<OutputType>Library</OutputType>

src/JavaScriptEngineSwitcher.ChakraCore/readme.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22

33
--------------------------------------------------------------------------------
4-
README file for JS Engine Switcher: ChakraCore v3.0.0 RC 1
4+
README file for JS Engine Switcher: ChakraCore v3.0.0 RC 2
55

66
--------------------------------------------------------------------------------
77

src/JavaScriptEngineSwitcher.Core/JavaScriptEngineSwitcher.Core.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Product>JS Engine Switcher: Core</Product>
55
<VersionPrefix>3.0.0</VersionPrefix>
6-
<VersionSuffix>rc1</VersionSuffix>
6+
<VersionSuffix>rc2</VersionSuffix>
77
<TargetFrameworks>net40-client;net45;netstandard1.3;netstandard2.0</TargetFrameworks>
88
<NetStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard1.3' ">1.6.0</NetStandardImplicitPackageVersion>
99
<OutputType>Library</OutputType>

src/JavaScriptEngineSwitcher.Core/readme.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22

33
--------------------------------------------------------------------------------
4-
README file for JS Engine Switcher: Core v3.0.0 RC 1
4+
README file for JS Engine Switcher: Core v3.0.0 RC 2
55

66
--------------------------------------------------------------------------------
77

src/JavaScriptEngineSwitcher.Extensions.MsDependencyInjection/JavaScriptEngineSwitcher.Extensions.MsDependencyInjection.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Product>JS Engine Switcher: MS Dependency Injection</Product>
55
<VersionPrefix>3.0.0</VersionPrefix>
6-
<VersionSuffix>rc1</VersionSuffix>
6+
<VersionSuffix>rc2</VersionSuffix>
77
<TargetFrameworks>net45;netstandard1.3;netstandard2.0</TargetFrameworks>
88
<NetStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard1.3' ">1.6.0</NetStandardImplicitPackageVersion>
99
<OutputType>Library</OutputType>

src/JavaScriptEngineSwitcher.Extensions.MsDependencyInjection/readme.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22

33
--------------------------------------------------------------------------------
4-
README file for JS Engine Switcher: MS Dependency Injection v3.0.0 RC 1
4+
README file for JS Engine Switcher: MS Dependency Injection v3.0.0 RC 2
55

66
--------------------------------------------------------------------------------
77

src/JavaScriptEngineSwitcher.Jint/JavaScriptEngineSwitcher.Jint.csproj

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Product>JS Engine Switcher: Jint</Product>
55
<VersionPrefix>3.0.0</VersionPrefix>
6-
<VersionSuffix>rc1</VersionSuffix>
6+
<VersionSuffix>rc2</VersionSuffix>
77
<TargetFrameworks>net40-client;net45;netstandard1.3;netstandard2.0</TargetFrameworks>
88
<OutputType>Library</OutputType>
99
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
@@ -13,7 +13,6 @@
1313
<Description>JavaScriptEngineSwitcher.Jint contains adapter `JintJsEngine` (wrapper for the Jint JavaScript Engine (http://github.com/sebastienros/jint) version 2.11.58).</Description>
1414
<PackageIconUrl>https://raw.githubusercontent.com/Taritsyn/JavaScriptEngineSwitcher/master/Icons/JavaScriptEngineSwitcher_Jint_Logo128x128.png</PackageIconUrl>
1515
<PackageTags>JavaScriptEngineSwitcher;JavaScript;ECMAScript;Jint</PackageTags>
16-
<PackageReleaseNotes>In configuration settings of the Jint JS engine was added one new property - `LocalTimeZone` (default `TimeZoneInfo.Local`).</PackageReleaseNotes>
1716
</PropertyGroup>
1817

1918
<Import Project="../../build/common.props" />

src/JavaScriptEngineSwitcher.Jint/readme.txt

+1-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22

33
--------------------------------------------------------------------------------
4-
README file for JS Engine Switcher: Jint v3.0.0 RC 1
4+
README file for JS Engine Switcher: Jint v3.0.0 RC 2
55

66
--------------------------------------------------------------------------------
77

@@ -14,12 +14,6 @@
1414
JavaScriptEngineSwitcher.Jint contains adapter `JintJsEngine` (wrapper for the
1515
Jint JavaScript Engine (http://github.com/sebastienros/jint) version 2.11.58).
1616

17-
=============
18-
RELEASE NOTES
19-
=============
20-
In configuration settings of the Jint JS engine was added one new property -
21-
`LocalTimeZone` (default `TimeZoneInfo.Local`).
22-
2317
=============
2418
DOCUMENTATION
2519
=============

src/JavaScriptEngineSwitcher.Jurassic/JavaScriptEngineSwitcher.Jurassic.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Product>JS Engine Switcher: Jurassic</Product>
55
<VersionPrefix>3.0.0</VersionPrefix>
6-
<VersionSuffix>rc1</VersionSuffix>
6+
<VersionSuffix>rc2</VersionSuffix>
77
<TargetFrameworks>net40-client;net45;netstandard2.0</TargetFrameworks>
88
<OutputType>Library</OutputType>
99
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>

src/JavaScriptEngineSwitcher.Jurassic/readme.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22

33
--------------------------------------------------------------------------------
4-
README file for JS Engine Switcher: Jurassic v3.0.0 RC 1
4+
README file for JS Engine Switcher: Jurassic v3.0.0 RC 2
55

66
--------------------------------------------------------------------------------
77

src/JavaScriptEngineSwitcher.Msie/JavaScriptEngineSwitcher.Msie.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Product>JS Engine Switcher: MSIE</Product>
55
<VersionPrefix>3.0.0</VersionPrefix>
6-
<VersionSuffix>rc1</VersionSuffix>
6+
<VersionSuffix>rc2</VersionSuffix>
77
<TargetFrameworks>net40-client;net45;netstandard1.3;netstandard2.0</TargetFrameworks>
88
<NetStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard1.3' ">1.6.0</NetStandardImplicitPackageVersion>
99
<OutputType>Library</OutputType>

src/JavaScriptEngineSwitcher.Msie/readme.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22

33
--------------------------------------------------------------------------------
4-
README file for JS Engine Switcher: MSIE v3.0.0 RC 1
4+
README file for JS Engine Switcher: MSIE v3.0.0 RC 2
55

66
--------------------------------------------------------------------------------
77

src/JavaScriptEngineSwitcher.NiL/JavaScriptEngineSwitcher.NiL.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Product>JS Engine Switcher: NiL</Product>
55
<VersionPrefix>3.0.0</VersionPrefix>
6-
<VersionSuffix>rc1</VersionSuffix>
6+
<VersionSuffix>rc2</VersionSuffix>
77
<TargetFrameworks>net40-client;net45;netstandard1.3;netstandard2.0</TargetFrameworks>
88
<OutputType>Library</OutputType>
99
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>

src/JavaScriptEngineSwitcher.NiL/readme.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22

33
--------------------------------------------------------------------------------
4-
README file for JS Engine Switcher: NiL v3.0.0 RC 1
4+
README file for JS Engine Switcher: NiL v3.0.0 RC 2
55

66
--------------------------------------------------------------------------------
77

src/JavaScriptEngineSwitcher.V8/JavaScriptEngineSwitcher.V8.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Product>JS Engine Switcher: V8</Product>
55
<VersionPrefix>3.0.0</VersionPrefix>
6-
<VersionSuffix>rc1</VersionSuffix>
6+
<VersionSuffix>rc2</VersionSuffix>
77
<TargetFrameworks>net45</TargetFrameworks>
88
<OutputType>Library</OutputType>
99
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>

src/JavaScriptEngineSwitcher.V8/readme.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22

33
--------------------------------------------------------------------------------
4-
README file for JS Engine Switcher: V8 v3.0.0 RC 1
4+
README file for JS Engine Switcher: V8 v3.0.0 RC 2
55

66
--------------------------------------------------------------------------------
77

src/JavaScriptEngineSwitcher.Vroom/JavaScriptEngineSwitcher.Vroom.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Product>JS Engine Switcher: Vroom</Product>
55
<VersionPrefix>3.0.0</VersionPrefix>
6-
<VersionSuffix>rc1</VersionSuffix>
6+
<VersionSuffix>rc2</VersionSuffix>
77
<TargetFrameworks>net40-client;net45;net471;netstandard1.6;netstandard2.0</TargetFrameworks>
88
<NetStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard1.6' ">1.6.0</NetStandardImplicitPackageVersion>
99
<OutputType>Library</OutputType>

src/JavaScriptEngineSwitcher.Vroom/readme.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22

33
--------------------------------------------------------------------------------
4-
README file for JS Engine Switcher: Vroom v3.0.0 RC 1
4+
README file for JS Engine Switcher: Vroom v3.0.0 RC 2
55

66
--------------------------------------------------------------------------------
77

test/JavaScriptEngineSwitcher.Benchmarks/JavaScriptEngineSwitcher.Benchmarks.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Product>JS Engine Switcher: Benchmarks</Product>
55
<VersionPrefix>3.0.0</VersionPrefix>
6-
<VersionSuffix>rc1</VersionSuffix>
6+
<VersionSuffix>rc2</VersionSuffix>
77
<TargetFrameworks>net46;netcoreapp2.0</TargetFrameworks>
88
<OutputType>Exe</OutputType>
99
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>

test/JavaScriptEngineSwitcher.Tests/JavaScriptEngineSwitcher.Tests.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Product>JS Engine Switcher: Tests</Product>
55
<VersionPrefix>3.0.0</VersionPrefix>
6-
<VersionSuffix>rc1</VersionSuffix>
6+
<VersionSuffix>rc2</VersionSuffix>
77
<TargetFrameworks>net452;net471;netcoreapp1.0;netcoreapp2.0</TargetFrameworks>
88
<RuntimeFrameworkVersion Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">1.0.13</RuntimeFrameworkVersion>
99
<OutputType>Library</OutputType>

0 commit comments

Comments
 (0)