Updated to Dotnet 7.0.202

This commit is contained in:
RVG|lory 2023-04-08 14:36:11 +02:00 committed by GitHub
parent 86d897d580
commit b5cfd91cec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 175 additions and 0 deletions

25
packages/dotnet/7.0.202/run vendored Normal file
View file

@ -0,0 +1,25 @@
#!/usr/bin/env bash
# Put instructions to run the runtime
export DOTNET_CLI_HOME=$PWD
case "${PISTON_LANGUAGE}" in
basic.net)
;&
fsharp.net)
;&
csharp.net)
shift
dotnet bin/Debug/net5.0/$(basename $(realpath .)).dll "$@"
;;
fsi)
FILENAME=$1
rename 's/$/\.fsx/' $FILENAME # Add .fsx extension
shift
dotnet $FSI_PATH $FILENAME.fsx "$@"
;;
*)
echo "How did you get here? (${PISTON_LANGUAGE})"
exit 1
;;
esac