1
0
mirror of https://github.com/bitwarden/server.git synced 2024-12-01 13:43:23 +01:00
bitwarden-server/src/Events/build.ps1
2019-07-24 21:59:14 -04:00

13 lines
373 B
PowerShell

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