1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-28 13:15:12 +01:00
bitwarden-server/src/Identity/build.ps1
2020-03-06 22:05:50 -05:00

13 lines
381 B
PowerShell

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