Matija Koželj f551688f2d Clean nuget dependencies and versioning
Update dependencies
Add init scripts
Set branches for gitmodules
2023-03-01 16:48:42 +01:00

22 lines
382 B
Batchfile

@echo off
SET root=%cd%
echo "Syncing submodules"
git submodule sync
git submodule update --init --remote
echo "Submodules up to date"
FOR /F "delims=" %%a IN ('DIR "../dependencies" /A:d /B') DO (
echo Handling %%a
cd ../dependencies/%%a/build
echo %cd%
IF EXIST init.bat (
echo "found init.bat"
call init
)
cd %root%
)
cd ../
dotnet build