File tree Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ This section describes all programming languages that **METACALL** allows to loa
103103| [ NodeJS] ( https://nodejs.org/ ) | [ N API] ( https://nodejs.org/api/n-api.html ) | ** >= 10.22.0 <= 15.20.0** | node |
104104| [ TypeScript] ( https://www.typescriptlang.org/ ) | [ TypeScript Language Service API] ( https://github.com/microsoft/TypeScript/wiki/Using-the-Language-Service-API ) | ** 4.2.3** | ts |
105105| [ JavaScript] ( https://developer.mozilla.org/bm/docs/Web/JavaScript ) | [ V8] ( https://v8.dev/ ) | ** 5.1.117** | js |
106- | [ C#] ( https://dotnet.microsoft.com/ ) | [ NetCore] ( https://github.com/dotnet/docs/blob/master/docs/core/tutorials/netcore-hosting.md ) | ** >= 1.0.0-preview2 <= 5.0.10 ** | cs |
106+ | [ C#] ( https://dotnet.microsoft.com/ ) | [ NetCore] ( https://github.com/dotnet/docs/blob/master/docs/core/tutorials/netcore-hosting.md ) | ** >= 1.0.0-preview2 <= 5.0.11 ** | cs |
107107| [ Ruby] ( https://ruby-lang.org/ ) | [ Ruby C API] ( https://silverhammermba.github.io/emberb/c/ ) | ** >= 2.1 <= 2.7** | rb |
108108| [ Cobol] ( https://sourceforge.net/projects/open-cobol/ ) | [ GNU/Cobol] ( https://open-cobol.sourceforge.io/doxygen/gnucobol-2/libcob_8h.html ) | ** >= 1.1.0** | cob |
109109| [ File] ( /source/loaders/file_loader ) | ** ∅** | ** 0.1.0** | file |
Original file line number Diff line number Diff line change 77option (OPTION_BUILD_LOADERS_C "Build C Foreign Function Interface library loader plugin." OFF )
88option (OPTION_BUILD_LOADERS_COB "Build GNU/COBOL 2.2 loader plugin." OFF )
99option (OPTION_BUILD_LOADERS_CR "Build Crystal 0.33.0 loader plugin." OFF )
10- option (OPTION_BUILD_LOADERS_CS "Build C# CoreCLR 5.0.10 Runtime loader plugin." OFF )
10+ option (OPTION_BUILD_LOADERS_CS "Build C# CoreCLR 5.0.11 Runtime loader plugin." OFF )
1111option (OPTION_BUILD_LOADERS_DART "Build Dart VM 2.8.4 Runtime loader plugin." OFF )
1212option (OPTION_BUILD_LOADERS_FILE "Build File System loader plugin." OFF )
1313option (OPTION_BUILD_LOADERS_JAVA "Build Java Virtual Machine loader plugin." OFF )
@@ -30,7 +30,7 @@ add_subdirectory(c_loader) # Foreign Function Interface library
3030add_subdirectory (cob_loader) # GNU/Cobol 2.2 Runtime
3131add_subdirectory (cr_loader) # Crystal 0.33.0 Runtime
3232add_subdirectory (dart_loader) # Dart VM 2.8.4 Runtime
33- add_subdirectory (cs_loader) # CoreCLR 5.0.10 Runtime
33+ add_subdirectory (cs_loader) # CoreCLR 5.0.11 Runtime
3434add_subdirectory (file_loader) # File System
3535add_subdirectory (java_loader) # Java Virtual Machine
3636add_subdirectory (jl_loader) # Julia Runtime
Original file line number Diff line number Diff line change @@ -198,7 +198,7 @@ sub_configure() {
198198 if [ $BUILD_NETCORE5 = 1 ]; then
199199 BUILD_STRING=" $BUILD_STRING \
200200 -DOPTION_BUILD_LOADERS_CS=On \
201- -DDOTNET_CORE_PATH=/usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.10 /"
201+ -DDOTNET_CORE_PATH=/usr/share/dotnet/shared/Microsoft.NETCore.App/5.0.11 /"
202202
203203 if [ $BUILD_SCRIPTS = 1 ]; then
204204 BUILD_STRING=" $BUILD_STRING -DOPTION_BUILD_SCRIPTS_CS=On"
Original file line number Diff line number Diff line change @@ -326,7 +326,7 @@ sub_metacall(){
326326 elif [ INSTALL_NETCORE2 = 1 ]; then
327327 NETCORE_VERSION=2.2.8
328328 elif [ INSTALL_NETCORE5 = 1 ]; then
329- NETCORE_VERSION=5.0.10
329+ NETCORE_VERSION=5.0.11
330330 else
331331 NETCORE_VERSION=0
332332 fi
Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ sub_netcore5(){
114114 rm packages-microsoft-prod.deb
115115
116116 $SUDO_CMD apt-get update
117- sub_apt_install_hold dotnet-runtime-5.0=5.0.10 -1
117+ sub_apt_install_hold dotnet-runtime-5.0=5.0.11 -1
118118}
119119
120120# V8
You can’t perform that action at this time.
0 commit comments