Compare commits
No commits in common. 'main' and 'develop' have entirely different histories.
@ -1,22 +0,0 @@
|
|||||||
@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,16 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<configuration>
|
|
||||||
<config>
|
|
||||||
<add key="repositoryPath" value="%PACKAGEHOME%/External" />
|
|
||||||
</config>
|
|
||||||
|
|
||||||
<packageRestore>
|
|
||||||
<add key="enabled" value="True" />
|
|
||||||
<add key="automatic" value="True" />
|
|
||||||
</packageRestore>
|
|
||||||
<packageSources>
|
|
||||||
<add key="NuGet official package source" value="https://api.nuget.org/v3/index.json" />
|
|
||||||
</packageSources>
|
|
||||||
|
|
||||||
<disabledPackageSources />
|
|
||||||
</configuration>
|
|
Loading…
Reference in new issue