Skip to content

Commit ad7ed1b

Browse files
committed
Update netcore to 5.0.6
1 parent 9113282 commit ad7ed1b

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

source/loaders/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ endif()
77
option(OPTION_BUILD_LOADERS_C "Build C Foreign Function Interface library loader plugin." OFF)
88
option(OPTION_BUILD_LOADERS_COB "Build GNU/COBOL 2.2 loader plugin." OFF)
99
option(OPTION_BUILD_LOADERS_CR "Build Crystal 0.33.0 loader plugin." OFF)
10-
option(OPTION_BUILD_LOADERS_CS "Build C# CoreCLR 5.0.5 Runtime loader plugin." OFF)
10+
option(OPTION_BUILD_LOADERS_CS "Build C# CoreCLR 5.0.6 Runtime loader plugin." OFF)
1111
option(OPTION_BUILD_LOADERS_DART "Build Dart VM 2.8.4 Runtime loader plugin." OFF)
1212
option(OPTION_BUILD_LOADERS_FILE "Build File System loader plugin." OFF)
1313
option(OPTION_BUILD_LOADERS_JAVA "Build Java Virtual Machine loader plugin." OFF)
@@ -29,7 +29,7 @@ add_subdirectory(c_loader) # Foreign Function Interface library
2929
add_subdirectory(cob_loader) # GNU/Cobol 2.2 Runtime
3030
add_subdirectory(cr_loader) # Crystal 0.33.0 Runtime
3131
add_subdirectory(dart_loader) # Dart VM 2.8.4 Runtime
32-
add_subdirectory(cs_loader) # CoreCLR 5.0.5 Runtime
32+
add_subdirectory(cs_loader) # CoreCLR 5.0.6 Runtime
3333
add_subdirectory(file_loader) # File System
3434
add_subdirectory(java_loader) # Java Virtual Machine
3535
add_subdirectory(jl_loader) # Julia Runtime

tools/metacall-clear.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ sub_python(){
6666
/usr/bin/yes | $SUDO_CMD pip3 uninstall django
6767
/usr/bin/yes | $SUDO_CMD pip3 uninstall requests
6868
/usr/bin/yes | $SUDO_CMD pip3 uninstall rsa
69+
/usr/bin/yes | $SUDO_CMD pip3 uninstall fn
6970
/usr/bin/yes | $SUDO_CMD pip3 uninstall joblib
7071
}
7172

tools/metacall-configure.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ sub_configure() {
200200
if [ $BUILD_NETCORE5 = 1 ]; then
201201
BUILD_STRING="$BUILD_STRING \
202202
-DOPTION_BUILD_LOADERS_CS=On \
203-
-DDOTNET_CORE_PATH=/usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.5/"
203+
-DDOTNET_CORE_PATH=/usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.6/"
204204

205205
if [ $BUILD_SCRIPTS = 1 ]; then
206206
BUILD_STRING="$BUILD_STRING -DOPTION_BUILD_SCRIPTS_CS=On"

tools/metacall-environment.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ sub_python(){
9393
$SUDO_CMD pip3 install setuptools
9494
$SUDO_CMD pip3 install wheel
9595
$SUDO_CMD pip3 install rsa
96+
$SUDO_CMD pip3 install fn
9697
$SUDO_CMD pip3 install scipy
9798
$SUDO_CMD pip3 install numpy
9899
$SUDO_CMD pip3 install scikit-learn
@@ -338,7 +339,7 @@ sub_metacall(){
338339
elif [ INSTALL_NETCORE2 = 1 ]; then
339340
NETCORE_VERSION=2.2.8
340341
elif [ INSTALL_NETCORE5 = 1 ]; then
341-
NETCORE_VERSION=5.0.5
342+
NETCORE_VERSION=5.0.6
342343
else
343344
NETCORE_VERSION=0
344345
fi

tools/metacall-runtime.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ sub_netcore5(){
128128
rm packages-microsoft-prod.deb
129129

130130
$SUDO_CMD apt-get update
131-
sub_apt_install_hold dotnet-runtime-5.0=5.0.5-1
131+
sub_apt_install_hold dotnet-runtime-5.0=5.0.6-1
132132
}
133133

134134
# V8

0 commit comments

Comments
 (0)