9 lines
183 B
Bash
Executable File
9 lines
183 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eo pipefail
|
|
|
|
BUILD_PATH="bin"
|
|
rm -rf "$BUILD_PATH"
|
|
dotnet publish "UplinkLauncher/UplinkLauncher.csproj" -o "$BUILD_PATH" \
|
|
-c Debug --arch x64
|
|
tree -h bin
|