DocSpace-buildtools/build/build.bat

33 lines
623 B
Batchfile
Raw Normal View History

PUSHD %~dp0
2019-09-03 11:12:19 +00:00
call runasadmin.bat "%~dpnx0"
if %errorlevel% == 0 (
call start\stop.bat
2019-07-10 16:00:37 +00:00
PUSHD %~dp0..
2020-01-08 11:58:21 +00:00
echo "ASC.Web.Components"
2020-01-08 12:28:27 +00:00
call build\scripts\components.sh
echo "ASC.Web.Common"
2020-01-08 12:28:27 +00:00
call build\scripts\common.sh
2019-07-09 12:12:39 +00:00
echo "ASC.Web.Client"
2020-01-08 12:28:27 +00:00
call build\scripts\client.sh
2019-07-09 12:12:39 +00:00
echo "ASC.Web.People.Client"
2020-01-08 12:28:27 +00:00
call build\scripts\people.sh
2020-02-25 06:58:09 +00:00
echo "ASC.Web.Files.Client"
call build\scripts\files.sh
echo "ASC.UrlShortener"
call build\scripts\urlshortener.sh
echo "ASC.Web.sln"
2019-06-07 14:34:51 +00:00
call dotnet build ASC.Web.sln /fl1 /flp1:LogFile=build/ASC.Web.log;Verbosity=Normal
start /b call build\start\start.bat
2019-09-03 11:12:19 +00:00
pause
)