#!/bin/sh # Build or test the solution with the SDK this machine keeps in ~/.dotnet. export DOTNET_ROOT="$HOME/.dotnet" export PATH="$HOME/.dotnet:$HOME/.dotnet/tools:$PATH" export DOTNET_NOLOGO=1 DOTNET_CLI_TELEMETRY_OPTOUT=1 cd "$(dirname "$0")" || exit 1 exec dotnet "$@"