Skip to content

Commit dd4f1dd

Browse files
committed
Added support of .NET Core 1.0.3
1 parent 8da919d commit dd4f1dd

File tree

20 files changed

+81
-66
lines changed

20 files changed

+81
-66
lines changed

NuGet/JavaScriptEngineSwitcher.ChakraCore/JavaScriptEngineSwitcher.ChakraCore.nuspec

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,10 @@ This package does not contain the native implementations of ChakraCore. Therefor
2020
* JavaScriptEngineSwitcher.ChakraCore.Native.debian-x64
2121
* JavaScriptEngineSwitcher.ChakraCore.Native.osx-x64</description>
2222
<summary>JavaScriptEngineSwitcher.ChakraCore contains adapter `ChakraCoreJsEngine` (wrapper for the ChakraCore).</summary>
23-
<releaseNotes>1. Attempt to prevent occurrence of the access violation exception in the `CallFunction` method;
24-
2. Fixed a error “Out of stack space”;
25-
3. Downgraded .NET Framework version from 4.5.1 to 4.5.</releaseNotes>
23+
<releaseNotes>1. Added support of .NET Core 1.0.3;
24+
2. Downgraded .NET Framework version from 4.5.1 to 4.5;
25+
3. Attempt to prevent occurrence of the access violation exception in the `CallFunction` method;
26+
4. Fixed a error “Out of stack space”.</releaseNotes>
2627
<copyright>Copyright (c) 2013-2016 Andrey Taritsyn - http://www.taritsyn.ru</copyright>
2728
<language>en-US</language>
2829
<tags>JavaScriptEngineSwitcher JavaScript ECMAScript ChakraCore</tags>

NuGet/JavaScriptEngineSwitcher.ChakraCore/readme.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,11 @@
3030
=============
3131
RELEASE NOTES
3232
=============
33-
1. Attempt to prevent occurrence of the access violation exception in the
33+
1. Added support of .NET Core 1.0.3;
34+
2. Downgraded .NET Framework version from 4.5.1 to 4.5;
35+
3. Attempt to prevent occurrence of the access violation exception in the
3436
`CallFunction` method;
35-
2. Fixed a error “Out of stack space”;
36-
3. Downgraded .NET Framework version from 4.5.1 to 4.5.
37+
4. Fixed a error “Out of stack space”.
3738

3839
=============
3940
DOCUMENTATION

NuGet/JavaScriptEngineSwitcher.Core/JavaScriptEngineSwitcher.Core.nuspec

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,9 @@
1212
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1313
<description>JavaScript Engine Switcher determines unified interface for access to the basic features of popular JavaScript engines (MSIE JavaScript Engine for .Net, Microsoft ClearScript.V8, Jurassic, Jint and ChakraCore). This library allows you to quickly and easily switch to using of another JavaScript engine.</description>
1414
<summary>JavaScript Engine Switcher determines unified interface for access to the basic features of popular JavaScript engines (MSIE JavaScript Engine for .Net, Microsoft ClearScript.V8, Jurassic, Jint and ChakraCore).</summary>
15-
<releaseNotes>1. Now when you call the overloaded version of the `ExecuteResource` method, that takes the type, need to pass the resource name without the namespace;
16-
2. Downgraded .NET Framework version from 4.5.1 to 4.5.</releaseNotes>
15+
<releaseNotes>1. Added support of .NET Core 1.0.3;
16+
2. Downgraded .NET Framework version from 4.5.1 to 4.5;
17+
3. Now when you call the overloaded version of the `ExecuteResource` method, that takes the type, need to pass the resource name without the namespace.</releaseNotes>
1718
<copyright>Copyright (c) 2013-2016 Andrey Taritsyn - http://www.taritsyn.ru</copyright>
1819
<language>en-US</language>
1920
<tags>JavaScriptEngineSwitcher JavaScript ECMAScript</tags>

NuGet/JavaScriptEngineSwitcher.Core/readme.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,10 @@
1919
=============
2020
RELEASE NOTES
2121
=============
22-
1. Now when you call the overloaded version of the `ExecuteResource` method,
23-
that takes the type, need to pass the resource name without the namespace;
24-
2. Downgraded .NET Framework version from 4.5.1 to 4.5.
22+
1. Added support of .NET Core 1.0.3;
23+
2. Downgraded .NET Framework version from 4.5.1 to 4.5;
24+
3. Now when you call the overloaded version of the `ExecuteResource` method,
25+
that takes the type, need to pass the resource name without the namespace.
2526

2627
=============
2728
DOCUMENTATION

NuGet/JavaScriptEngineSwitcher.Extensions.MsDependencyInjection/JavaScriptEngineSwitcher.Extensions.MsDependencyInjection.nuspec

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,24 @@
1212
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1313
<description>JavaScriptEngineSwitcher.Extensions.MsDependencyInjection contains extension methods for adding the JS engine switcher in an `IServiceCollection`.</description>
1414
<summary>JavaScriptEngineSwitcher.Extensions.MsDependencyInjection contains extension methods for adding the JS engine switcher in an `IServiceCollection`.</summary>
15-
<releaseNotes>Downgraded .NET Framework version from 4.5.1 to 4.5.</releaseNotes>
15+
<releaseNotes>1. Added support of .NET Core 1.0.3;
16+
2. Downgraded .NET Framework version from 4.5.1 to 4.5.</releaseNotes>
1617
<copyright>Copyright (c) 2013-2016 Andrey Taritsyn - http://www.taritsyn.ru</copyright>
1718
<language>en-US</language>
1819
<tags>JavaScriptEngineSwitcher JavaScript ECMAScript DI</tags>
1920
<dependencies>
2021
<group targetFramework=".NETFramework4.5">
21-
<dependency id="Microsoft.Extensions.DependencyInjection.Abstractions" version="1.0.0" />
22-
<dependency id="JavaScriptEngineSwitcher.Core" version="2.0.0" />
22+
<dependency id="Microsoft.Extensions.DependencyInjection.Abstractions" version="1.0.1" />
23+
<dependency id="JavaScriptEngineSwitcher.Core" version="2.1.2" />
2324
</group>
2425
<group targetFramework=".NETStandard1.3">
25-
<dependency id="Microsoft.Extensions.DependencyInjection.Abstractions" version="1.0.0" />
26-
<dependency id="JavaScriptEngineSwitcher.Core" version="2.0.0" />
26+
<dependency id="Microsoft.Extensions.DependencyInjection.Abstractions" version="1.0.1" />
27+
<dependency id="JavaScriptEngineSwitcher.Core" version="2.1.2" />
2728
</group>
2829
</dependencies>
30+
<frameworkAssemblies>
31+
<frameworkAssembly assemblyName="System.Runtime" targetFramework=".NETFramework4.5" />
32+
</frameworkAssemblies>
2933
<references>
3034
<reference file="JavaScriptEngineSwitcher.Extensions.MsDependencyInjection.dll" />
3135
</references>

NuGet/JavaScriptEngineSwitcher.Extensions.MsDependencyInjection/readme.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
=============
1818
RELEASE NOTES
1919
=============
20-
Downgraded .NET Framework version from 4.5.1 to 4.5.
20+
1. Added support of .NET Core 1.0.3;
21+
2. Downgraded .NET Framework version from 4.5.1 to 4.5.
2122

2223
=============
2324
DOCUMENTATION

NuGet/JavaScriptEngineSwitcher.Jint/JavaScriptEngineSwitcher.Jint.nuspec

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1313
<description>JavaScriptEngineSwitcher.Jint contains adapter `JintJsEngine` (wrapper for the Jint JavaScript Engine (http://github.com/sebastienros/jint) version 2.10.2).</description>
1414
<summary>JavaScriptEngineSwitcher.Jint contains adapter `JintJsEngine` (wrapper for the Jint JavaScript Engine version 2.10.2).</summary>
15-
<releaseNotes>Downgraded .NET Framework version from 4.5.1 to 4.5.</releaseNotes>
15+
<releaseNotes>1. Added support of .NET Core 1.0.3;
16+
2. Downgraded .NET Framework version from 4.5.1 to 4.5.</releaseNotes>
1617
<copyright>Copyright (c) 2013-2016 Andrey Taritsyn - http://www.taritsyn.ru</copyright>
1718
<language>en-US</language>
1819
<tags>JavaScriptEngineSwitcher JavaScript ECMAScript Jint</tags>

NuGet/JavaScriptEngineSwitcher.Jint/readme.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
=============
1818
RELEASE NOTES
1919
=============
20-
Downgraded .NET Framework version from 4.5.1 to 4.5.
20+
1. Added support of .NET Core 1.0.3;
21+
2. Downgraded .NET Framework version from 4.5.1 to 4.5.
2122

2223
=============
2324
DOCUMENTATION

NuGet/JavaScriptEngineSwitcher.Msie/JavaScriptEngineSwitcher.Msie.nuspec

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,9 @@
1212
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1313
<description>JavaScriptEngineSwitcher.Msie contains adapter `MsieJsEngine` (wrapper for the MSIE JavaScript Engine for .Net (http://github.com/Taritsyn/MsieJavaScriptEngine)). For correct working of the MSIE JavaScript Engine it is recommended to install Internet Explorer 9 and above on a server.</description>
1414
<summary>JavaScriptEngineSwitcher.Msie contains adapter `MsieJsEngine` (wrapper for the MSIE JavaScript Engine for .Net).</summary>
15-
<releaseNotes>1. Downgraded .NET Framework version from 4.5.1 to 4.5;
16-
2. Added support of MSIE JavaScript Engine version 2.1.0.</releaseNotes>
15+
<releaseNotes>1. Added support of .NET Core 1.0.3;
16+
2. Downgraded .NET Framework version from 4.5.1 to 4.5;
17+
3. Added support of MSIE JavaScript Engine version 2.1.0.</releaseNotes>
1718
<copyright>Copyright (c) 2013-2016 Andrey Taritsyn - http://www.taritsyn.ru</copyright>
1819
<language>en-US</language>
1920
<tags>JavaScriptEngineSwitcher JavaScript ECMAScript MSIE IE Chakra</tags>

NuGet/JavaScriptEngineSwitcher.Msie/readme.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,9 @@
1919
=============
2020
RELEASE NOTES
2121
=============
22-
1. Downgraded .NET Framework version from 4.5.1 to 4.5;
23-
2. Added support of MSIE JavaScript Engine version 2.1.0.
22+
1. Added support of .NET Core 1.0.3;
23+
2. Downgraded .NET Framework version from 4.5.1 to 4.5;
24+
3. Added support of MSIE JavaScript Engine version 2.1.0.
2425

2526
=============
2627
DOCUMENTATION

0 commit comments

Comments
 (0)