DocSpace-buildtools/build/install/win/backend-build.bat
Evgeniy Antonyuk c43727f295
Remove services and update dependencies in packages (#1100)
* Remove services in packages

* Remove services in win package

* Update the nodejs version

* Update the elasticsearch version

* Change version when configuring elasticsearch in win package
2022-12-05 14:54:22 +03:00

25 lines
478 B
Batchfile

@echo off
echo
echo #####################
echo # build backend #
echo #####################
set SRC_PATH=%~s2
pushd %~1
call dotnet build ASC.Web.slnf
call dotnet build ASC.Migrations.sln -o %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