generated from Connected/Connected.RepositoryTemplate
parent
e7952e2a76
commit
c5ff77a648
@ -1,6 +1,8 @@
|
|||||||
[submodule "dependencies/Connected"]
|
[submodule "dependencies/Connected"]
|
||||||
path = dependencies/Connected
|
path = dependencies/Connected
|
||||||
url = https://git.tompit.com/Connected/Connected.git
|
url = https://git.tompit.com/Connected/Connected.git
|
||||||
|
branch = develop
|
||||||
[submodule "dependencies/Connected.Components"]
|
[submodule "dependencies/Connected.Components"]
|
||||||
path = dependencies/Connected.Components
|
path = dependencies/Connected.Components
|
||||||
url = https://git.tompit.com/Connected/Connected.Components.git
|
url = https://git.tompit.com/Connected/Connected.Components.git
|
||||||
|
branch = features/rewrite/main
|
||||||
|
@ -0,0 +1,22 @@
|
|||||||
|
@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
|
@ -1 +1 @@
|
|||||||
Subproject commit cc259dfc18c4ad6989898fa813e281b9249c3bd3
|
Subproject commit dd40532a0ff03237407de9635c7211c5e1af5807
|
@ -1 +1 @@
|
|||||||
Subproject commit a63bd4e5edec2e40f70fceebc700be4e3ac13def
|
Subproject commit a9e0968740c970e01fbef1d434f5802511ac138f
|
Loading…
Reference in new issue