DocSpace-buildtools/install/win/backend-build.bat

25 lines
497 B
Batchfile
Raw Normal View History

@echo off
echo
echo #####################
echo # build backend #
echo #####################
set SRC_PATH=%~s2
pushd %~1
2022-11-23 15:26:50 +00:00
call dotnet build ASC.Web.slnf
call dotnet build ASC.Migrations.sln --property:OutputPath=%SRC_PATH%\services\ASC.Migration.Runner\service
echo "== Build ASC.Socket.IO =="
pushd common\ASC.Socket.IO
call yarn install --frozen-lockfile
popd
echo "== Build ASC.SsoAuth =="
pushd common\ASC.SsoAuth
call yarn install --frozen-lockfile
popd
popd