12 lines
197 B
Bash
Executable file
12 lines
197 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
# Set up logging.
|
|
log() { echo "🛠️ $(basename $0): $@"; }
|
|
|
|
# Move into the top level.
|
|
cd $(dirname $0)/..
|
|
|
|
./scripts/setup.sh || exit 1
|
|
|
|
log "building project"
|
|
dotnet build
|