8 lines
122 B
Bash
8 lines
122 B
Bash
|
#!/usr/bin/env sh
|
||
|
|
||
|
cd $(dirname $0)/..
|
||
|
./scripts/setup.sh || exit 1
|
||
|
|
||
|
echo "$(basename $0): building project"
|
||
|
dotnet build
|