mirror of
https://github.com/bitwarden/server.git
synced 2025-06-09 20:50:31 -05:00
19 lines
471 B
PowerShell
19 lines
471 B
PowerShell
$curDir = pwd
|
|
$dir = Split-Path -Parent $MyInvocation.MyCommand.Path
|
|
|
|
echo "`n## Building Admin"
|
|
|
|
echo "`nBuilding app"
|
|
echo ".NET Core version $(dotnet --version)"
|
|
echo "Restore"
|
|
dotnet restore $dir\Admin.csproj
|
|
echo "Clean"
|
|
dotnet clean $dir\Admin.csproj -c "Release" -o $dir\obj\Azure\publish
|
|
echo "Node Build"
|
|
cd $dir
|
|
npm install
|
|
cd $curDir
|
|
gulp --gulpfile $dir\gulpfile.js build
|
|
echo "Publish"
|
|
dotnet publish $dir\Admin.csproj -c "Release" -o $dir\obj\Azure\publish
|