Skip to content

Commit 8da919d

Browse files
committed
Downgraded .NET Framework version from 4.5.1 to 4.5
1 parent 463f8bc commit 8da919d

File tree

44 files changed

+105
-68
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+105
-68
lines changed

NuGet/JavaScriptEngineSwitcher.ChakraCore/JavaScriptEngineSwitcher.ChakraCore.nuspec

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,16 @@ This package does not contain the native implementations of ChakraCore. Therefor
2121
* JavaScriptEngineSwitcher.ChakraCore.Native.osx-x64</description>
2222
<summary>JavaScriptEngineSwitcher.ChakraCore contains adapter `ChakraCoreJsEngine` (wrapper for the ChakraCore).</summary>
2323
<releaseNotes>1. Attempt to prevent occurrence of the access violation exception in the `CallFunction` method;
24-
2. Fixed a error “Out of stack space”.</releaseNotes>
24+
2. Fixed a error “Out of stack space”;
25+
3. Downgraded .NET Framework version from 4.5.1 to 4.5.</releaseNotes>
2526
<copyright>Copyright (c) 2013-2016 Andrey Taritsyn - http://www.taritsyn.ru</copyright>
2627
<language>en-US</language>
2728
<tags>JavaScriptEngineSwitcher JavaScript ECMAScript ChakraCore</tags>
2829
<dependencies>
2930
<group targetFramework=".NETFramework4.0-Client">
3031
<dependency id="JavaScriptEngineSwitcher.Core" version="2.1.2" />
3132
</group>
32-
<group targetFramework=".NETFramework4.5.1">
33+
<group targetFramework=".NETFramework4.5">
3334
<dependency id="JavaScriptEngineSwitcher.Core" version="2.1.2" />
3435
</group>
3536
<group targetFramework=".NETStandard1.3">

NuGet/JavaScriptEngineSwitcher.ChakraCore/build-package.cmd

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ del jsrt-dotnet-license.txt /Q/S
1717
xcopy "%net4_project_bin_dir%\%project_name%.dll" lib\net40-client\
1818
xcopy "%net4_project_bin_dir%\ru-ru\%project_name%.resources.dll" lib\net40-client\ru-ru\
1919

20-
%dotnet_cli% build "%dotnet_project_source_dir%" --framework net451 --configuration Release --no-dependencies --no-incremental
21-
xcopy "%dotnet_project_bin_dir%\net451\%project_name%.dll" lib\net451\
22-
xcopy "%dotnet_project_bin_dir%\net451\%project_name%.xml" lib\net451\
23-
xcopy "%dotnet_project_bin_dir%\net451\ru-ru\%project_name%.resources.dll" lib\net451\ru-ru\
20+
%dotnet_cli% build "%dotnet_project_source_dir%" --framework net45 --configuration Release --no-dependencies --no-incremental
21+
xcopy "%dotnet_project_bin_dir%\net45\%project_name%.dll" lib\net45\
22+
xcopy "%dotnet_project_bin_dir%\net45\%project_name%.xml" lib\net45\
23+
xcopy "%dotnet_project_bin_dir%\net45\ru-ru\%project_name%.resources.dll" lib\net45\ru-ru\
2424

2525
%dotnet_cli% build "%dotnet_project_source_dir%" --framework netstandard1.3 --configuration Release --no-dependencies --no-incremental
2626
xcopy "%dotnet_project_bin_dir%\netstandard1.3\%project_name%.dll" lib\netstandard1.3\

NuGet/JavaScriptEngineSwitcher.ChakraCore/readme.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@
3232
=============
3333
1. Attempt to prevent occurrence of the access violation exception in the
3434
`CallFunction` method;
35-
2. Fixed a error “Out of stack space”.
35+
2. Fixed a error “Out of stack space”;
36+
3. Downgraded .NET Framework version from 4.5.1 to 4.5.
3637

3738
=============
3839
DOCUMENTATION

NuGet/JavaScriptEngineSwitcher.Core/JavaScriptEngineSwitcher.Core.nuspec

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,14 @@
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>Fixed a error #23 “GetResourceAsString does not work as expected”.</releaseNotes>
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>
1617
<copyright>Copyright (c) 2013-2016 Andrey Taritsyn - http://www.taritsyn.ru</copyright>
1718
<language>en-US</language>
1819
<tags>JavaScriptEngineSwitcher JavaScript ECMAScript</tags>
1920
<dependencies>
2021
<group targetFramework=".NETFramework4.0-Client" />
21-
<group targetFramework=".NETFramework4.5.1" />
22+
<group targetFramework=".NETFramework4.5" />
2223
<group targetFramework=".NETStandard1.3">
2324
<dependency id="System.Collections" version="4.0.11" />
2425
<dependency id="System.ComponentModel.TypeConverter" version="4.1.0" />

NuGet/JavaScriptEngineSwitcher.Core/build-package.cmd

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ rmdir lib /Q/S
1313
xcopy "%net4_project_bin_dir%\%project_name%.dll" lib\net40-client\
1414
xcopy "%net4_project_bin_dir%\ru-ru\%project_name%.resources.dll" lib\net40-client\ru-ru\
1515

16-
%dotnet_cli% build "%dotnet_project_source_dir%" --framework net451 --configuration Release --no-dependencies --no-incremental
17-
xcopy "%dotnet_project_bin_dir%\net451\%project_name%.dll" lib\net451\
18-
xcopy "%dotnet_project_bin_dir%\net451\%project_name%.xml" lib\net451\
19-
xcopy "%dotnet_project_bin_dir%\net451\ru-ru\%project_name%.resources.dll" lib\net451\ru-ru\
16+
%dotnet_cli% build "%dotnet_project_source_dir%" --framework net45 --configuration Release --no-dependencies --no-incremental
17+
xcopy "%dotnet_project_bin_dir%\net45\%project_name%.dll" lib\net45\
18+
xcopy "%dotnet_project_bin_dir%\net45\%project_name%.xml" lib\net45\
19+
xcopy "%dotnet_project_bin_dir%\net45\ru-ru\%project_name%.resources.dll" lib\net45\ru-ru\
2020

2121
%dotnet_cli% build "%dotnet_project_source_dir%" --framework netstandard1.3 --configuration Release --no-dependencies --no-incremental
2222
xcopy "%dotnet_project_bin_dir%\netstandard1.3\%project_name%.dll" lib\netstandard1.3\

NuGet/JavaScriptEngineSwitcher.Core/readme.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@
1919
=============
2020
RELEASE NOTES
2121
=============
22-
Fixed a error #23 “GetResourceAsString does not work as expected”.
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.
2325

2426
=============
2527
DOCUMENTATION

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,12 @@
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>
1516
<copyright>Copyright (c) 2013-2016 Andrey Taritsyn - http://www.taritsyn.ru</copyright>
1617
<language>en-US</language>
1718
<tags>JavaScriptEngineSwitcher JavaScript ECMAScript DI</tags>
1819
<dependencies>
19-
<group targetFramework=".NETFramework4.5.1">
20+
<group targetFramework=".NETFramework4.5">
2021
<dependency id="Microsoft.Extensions.DependencyInjection.Abstractions" version="1.0.0" />
2122
<dependency id="JavaScriptEngineSwitcher.Core" version="2.0.0" />
2223
</group>

NuGet/JavaScriptEngineSwitcher.Extensions.MsDependencyInjection/build-package.cmd

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ call "..\setup.cmd"
77

88
rmdir lib /Q/S
99

10-
%dotnet_cli% build "%dotnet_project_source_dir%" --framework net451 --configuration Release --no-dependencies --no-incremental
11-
xcopy "%dotnet_project_bin_dir%\net451\%project_name%.dll" lib\net451\
12-
xcopy "%dotnet_project_bin_dir%\net451\%project_name%.xml" lib\net451\
13-
xcopy "%dotnet_project_bin_dir%\net451\ru-ru\%project_name%.resources.dll" lib\net451\ru-ru\
10+
%dotnet_cli% build "%dotnet_project_source_dir%" --framework net45 --configuration Release --no-dependencies --no-incremental
11+
xcopy "%dotnet_project_bin_dir%\net45\%project_name%.dll" lib\net45\
12+
xcopy "%dotnet_project_bin_dir%\net45\%project_name%.xml" lib\net45\
13+
xcopy "%dotnet_project_bin_dir%\net45\ru-ru\%project_name%.resources.dll" lib\net45\ru-ru\
1414

1515
%dotnet_cli% build "%dotnet_project_source_dir%" --framework netstandard1.3 --configuration Release --no-dependencies --no-incremental
1616
xcopy "%dotnet_project_bin_dir%\netstandard1.3\%project_name%.dll" lib\netstandard1.3\

NuGet/JavaScriptEngineSwitcher.Extensions.MsDependencyInjection/readme.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@
1414
JavaScriptEngineSwitcher.Extensions.MsDependencyInjection contains extension
1515
methods for adding the JS engine switcher in an `IServiceCollection`.
1616

17+
=============
18+
RELEASE NOTES
19+
=============
20+
Downgraded .NET Framework version from 4.5.1 to 4.5.
21+
1722
=============
1823
DOCUMENTATION
1924
=============

NuGet/JavaScriptEngineSwitcher.Jint/JavaScriptEngineSwitcher.Jint.nuspec

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
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>
1516
<copyright>Copyright (c) 2013-2016 Andrey Taritsyn - http://www.taritsyn.ru</copyright>
1617
<language>en-US</language>
1718
<tags>JavaScriptEngineSwitcher JavaScript ECMAScript Jint</tags>
@@ -20,7 +21,7 @@
2021
<dependency id="Jint" version="2.10.2" />
2122
<dependency id="JavaScriptEngineSwitcher.Core" version="2.1.2" />
2223
</group>
23-
<group targetFramework=".NETFramework4.5.1">
24+
<group targetFramework=".NETFramework4.5">
2425
<dependency id="Jint" version="2.10.2" />
2526
<dependency id="JavaScriptEngineSwitcher.Core" version="2.1.2" />
2627
</group>

0 commit comments

Comments
 (0)