DocSpace-buildtools/build/build.backend.bat

13 lines
228 B
Batchfile
Raw Normal View History

2021-03-23 11:10:33 +00:00
PUSHD %~dp0..
dotnet build ASC.Web.sln /fl1 /flp1:LogFile=build/ASC.Web.log;Verbosity=Normal
2021-06-22 16:44:09 +00:00
@echo off
2021-03-23 11:10:33 +00:00
2021-06-22 16:44:09 +00:00
if %errorlevel% == 0 (
for /R "build\scripts\" %%f in (*.sh) do (
echo "%%~nxf"
call build\scripts\%%~nxf
)
)
2021-03-23 11:10:33 +00:00
2021-06-22 16:44:09 +00:00
pause