Compare commits
3 Commits
Author | SHA1 | Date |
---|---|---|
Matija Koželj | 635930c61c | 2 years ago |
Matija Koželj | c64be670d1 | 2 years ago |
Matija Koželj | 23cc96f87e | 2 years ago |
@ -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
|
@ -0,0 +1,16 @@
|
||||
<?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