DocSpace-buildtools/build/build.bat

16 lines
544 B
Batchfile
Raw Normal View History

PUSHD %~dp0
echo "ASC.Web.Components"
cd ../web/ASC.Web.Components
call npm install
echo "ASC.Web.sln"
cd ../../
2019-06-07 14:34:51 +00:00
call dotnet build ASC.Web.sln /fl1 /flp1:LogFile=build/ASC.Web.log;Verbosity=Normal
echo "ASC.People"
2019-06-07 14:34:51 +00:00
call dotnet publish products/ASC.People --self-contained -r win10-x64 -o build/deploy /fl1 /flp1:LogFile=build/ASC.People.log;Verbosity=Normal
echo "ASC.Web.Api"
2019-06-07 14:34:51 +00:00
call dotnet publish web/ASC.Web.Api --self-contained -r win10-x64 -o build/deploy /fl1 /flp1:LogFile=build/ASC.Web.Api.log;Verbosity=Normal
pause