1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-06 05:28:15 -05:00
bitwarden/src/Api/build.ps1
2020-03-06 22:05:50 -05:00

13 lines
361 B
PowerShell

$dir = Split-Path -Parent $MyInvocation.MyCommand.Path
echo "`n## Building API"
echo "`nBuilding app"
echo ".NET Core version $(dotnet --version)"
echo "Restore"
dotnet restore $dir\Api.csproj
echo "Clean"
dotnet clean $dir\Api.csproj -c "Release" -o $dir\obj\Azure\publish
echo "Publish"
dotnet publish $dir\Api.csproj -c "Release" -o $dir\obj\Azure\publish