Skip to content

Commit d29aab1

Browse files
committed
Added support of .NET Core 1.0.3
1 parent 5412abf commit d29aab1

File tree

9 files changed

+11
-9
lines changed

9 files changed

+11
-9
lines changed

NuGet/MsieJavaScriptEngine.nuspec

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
<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;
1616
2. Fixed a error “Out of stack space”;
1717
3. JSON2 library was updated to version of October 28, 2016;
18-
4. Downgraded .NET Framework version from 4.5.1 to 4.5.</releaseNotes>
18+
4. Downgraded .NET Framework version from 4.5.1 to 4.5;
19+
5. Added support of .NET Core 1.0.3.</releaseNotes>
1920
<copyright>Copyright (c) 2012-2016 Andrey Taritsyn - http://www.taritsyn.ru</copyright>
2021
<language>en-US</language>
2122
<tags>JavaScript ECMAScript MSIE IE Edge Chakra</tags>

NuGet/readme.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@
2525
takes the type, need to pass the resource name without the namespace;
2626
2. Fixed a error “Out of stack space”;
2727
3. JSON2 library was updated to version of October 28, 2016;
28-
4. Downgraded .NET Framework version from 4.5.1 to 4.5.
28+
4. Downgraded .NET Framework version from 4.5.1 to 4.5;
29+
5. Added support of .NET Core 1.0.3.
2930

3031
============
3132
PROJECT SITE

build.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
setlocal
44
set ORIGINAL_CURRENT_DIR=%cd%
55
set KOREBUILD_DOTNET_CHANNEL=preview
6-
set KOREBUILD_DOTNET_VERSION=1.0.0-preview2-003131
6+
set KOREBUILD_DOTNET_VERSION=1.0.0-preview2-003156
77

88
cd %~dp0
99

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22
ORIGINAL_CURRENT_DIR=%cd%
33
KOREBUILD_DOTNET_CHANNEL=preview
4-
KOREBUILD_DOTNET_VERSION=1.0.0-preview2-003131
4+
KOREBUILD_DOTNET_VERSION=1.0.0-preview2-003156
55

66
repoFolder="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
77
cd $repoFolder

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"projects": [ "src", "test" ],
33
"sdk": {
4-
"version": "1.0.0-preview2-003131"
4+
"version": "1.0.0-preview2-003156"
55
}
66
}

test/MsieJavaScriptEngine.Test.Auto/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"imports": [ "portable-net451+win8" ],
1919
"dependencies": {
2020
"Microsoft.NETCore.App": {
21-
"version": "1.0.1",
21+
"version": "1.0.3",
2222
"type": "platform"
2323
}
2424
}

test/MsieJavaScriptEngine.Test.ChakraEdgeJsRt/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"imports": [ "portable-net451+win8" ],
1919
"dependencies": {
2020
"Microsoft.NETCore.App": {
21-
"version": "1.0.1",
21+
"version": "1.0.3",
2222
"type": "platform"
2323
}
2424
}

test/MsieJavaScriptEngine.Test.ChakraIeJsRt/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"imports": [ "portable-net451+win8" ],
1919
"dependencies": {
2020
"Microsoft.NETCore.App": {
21-
"version": "1.0.1",
21+
"version": "1.0.3",
2222
"type": "platform"
2323
}
2424
}

test/MsieJavaScriptEngine.Test.Common/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"imports": [ "portable-net451+win8" ],
2525
"dependencies": {
2626
"Microsoft.NETCore.App": {
27-
"version": "1.0.1",
27+
"version": "1.0.3",
2828
"type": "platform"
2929
}
3030
}

0 commit comments

Comments
 (0)