mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 13:08:17 -05:00
15 lines
431 B
Bash
Executable File
15 lines
431 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
echo -e "\n## Building Billing"
|
|
|
|
echo -e "\nBuilding app"
|
|
echo -e ".NET Core version $(dotnet --version)"
|
|
echo -e "Restore"
|
|
dotnet restore $DIR/Billing.csproj
|
|
echo -e "Clean"
|
|
dotnet clean $DIR/Billing.csproj -c "Release" -o $DIR/obj/build-output/publish
|
|
echo -e "Publish"
|
|
dotnet publish $DIR/Billing.csproj -c "Release" -o $DIR/obj/build-output/publish
|