mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 13:08:17 -05:00
19 lines
433 B
PowerShell
19 lines
433 B
PowerShell
$curDir = pwd
|
|
$dir = Split-Path -Parent $MyInvocation.MyCommand.Path
|
|
|
|
echo "`n## Building Sso"
|
|
|
|
echo "`nBuilding app"
|
|
echo ".NET Core version $(dotnet --version)"
|
|
echo "Restore"
|
|
dotnet restore $dir\Sso.csproj
|
|
echo "Clean"
|
|
dotnet clean $dir\Sso.csproj -c "Release" -o $dir\obj\Azure\publish
|
|
echo "Node Build"
|
|
cd $dir
|
|
npm ci
|
|
npm run build
|
|
cd $curDir
|
|
echo "Publish"
|
|
dotnet publish $dir\Sso.csproj -c "Release" -o $dir\obj\Azure\publish
|