2021-03-20 02:39:59 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
# Put instructions to run the runtime
|
2021-03-20 03:17:55 +01:00
|
|
|
export DOTNET_CLI_HOME=$PWD
|
|
|
|
|
2021-03-20 02:39:59 +01:00
|
|
|
shift
|
2021-03-20 03:57:29 +01:00
|
|
|
dotnet bin/Debug/net5.0/$(basename $(realpath .)).dll "$@"
|