generated from Connected/Connected.RepositoryTemplate
Add init script
Update dependencies Update package references for Connected.UI
This commit is contained in:
parent
e7952e2a76
commit
c5ff77a648
2
.gitmodules
vendored
2
.gitmodules
vendored
@ -1,6 +1,8 @@
|
||||
[submodule "dependencies/Connected"]
|
||||
path = dependencies/Connected
|
||||
url = https://git.tompit.com/Connected/Connected.git
|
||||
branch = develop
|
||||
[submodule "dependencies/Connected.Components"]
|
||||
path = dependencies/Connected.Components
|
||||
url = https://git.tompit.com/Connected/Connected.Components.git
|
||||
branch = features/rewrite/main
|
||||
|
22
build/init.bat
Normal file
22
build/init.bat
Normal file
@ -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
|
2
dependencies/Connected
vendored
2
dependencies/Connected
vendored
@ -1 +1 @@
|
||||
Subproject commit cc259dfc18c4ad6989898fa813e281b9249c3bd3
|
||||
Subproject commit dd40532a0ff03237407de9635c7211c5e1af5807
|
2
dependencies/Connected.Components
vendored
2
dependencies/Connected.Components
vendored
@ -1 +1 @@
|
||||
Subproject commit a63bd4e5edec2e40f70fceebc700be4e3ac13def
|
||||
Subproject commit a9e0968740c970e01fbef1d434f5802511ac138f
|
@ -12,7 +12,7 @@
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="7.0.0" />
|
||||
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="7.0.*-*" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
Loading…
x
Reference in New Issue
Block a user