mirror of
https://github.com/bitwarden/server.git
synced 2024-11-28 13:15:12 +01:00
13 lines
381 B
PowerShell
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
|