diff --git a/packages/dotnet/5.0.201/compile b/packages/dotnet/5.0.201/compile index d92c7a9..1500acb 100644 --- a/packages/dotnet/5.0.201/compile +++ b/packages/dotnet/5.0.201/compile @@ -1,12 +1,12 @@ #!/usr/bin/env bash export DOTNET_CLI_HOME=$PWD +export HOME=$PWD -dotnet build > /dev/null # Shut the thing up +dotnet build --help > /dev/null # Shut the thing up dotnet new console -o . --no-restore rm Program.cs dotnet restore --source $DOTNET_ROOT/.nuget/packages - -dotnet build -o . --no-restore \ No newline at end of file +dotnet build --no-restore \ No newline at end of file diff --git a/packages/dotnet/5.0.201/run b/packages/dotnet/5.0.201/run index 40495e0..774a08a 100644 --- a/packages/dotnet/5.0.201/run +++ b/packages/dotnet/5.0.201/run @@ -4,4 +4,4 @@ export DOTNET_CLI_HOME=$PWD shift -dotnet $(basename $(realpath .)).dll "$@" \ No newline at end of file +dotnet bin/Debug/net5.0/$(basename $(realpath .)).dll "$@" \ No newline at end of file