#!/usr/bin/env bash # Run the Before.Console demo app (src/Before.Console/Program.cs). # Delegates to scripts/dotnet.sh — see there for why the wrapper exists # (mise-installed dotnet, DOTNET_CLI_HOME, run from repo root). # # Usage: scripts/run-console.sh [app args] # scripts/run-console.sh # no args # scripts/run-console.sh -- --verbose # args are passed to the program set -euo pipefail exec "$(cd "$(dirname "$0")" && pwd)/dotnet.sh" run --project src/Before.Console -- "$@"