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

30 lines
596 B
Batchfile
Raw Normal View History

@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.UrlShortener =="
pushd common\ASC.UrlShortener
call yarn install --frozen-lockfile
popd
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