Compare commits

..

3 Commits

Author SHA1 Message Date
Matija Koželj 635930c61c Add default dependency init script
2 years ago
Matija Koželj c64be670d1 Add default nuget.config
2 years ago
Matija Koželj 23cc96f87e Change default indentation in .editorconfig
2 years ago

@ -7,9 +7,9 @@ root = true
#### Core EditorConfig Options #### #### Core EditorConfig Options ####
# Indentation and spacing # Indentation and spacing
indent_size = 4 indent_size = 3
indent_style = tab indent_style = tab
tab_width = 4 tab_width = 3
# New line preferences # New line preferences
end_of_line = crlf end_of_line = crlf

1
.gitignore vendored

@ -425,5 +425,6 @@ FodyWeavers.xsd
!/examples !/examples
!/src !/src
!/tests !/tests
!/dependencies
!/tools !/tools
!/*.[Ss][Ll][Nn] !/*.[Ss][Ll][Nn]

@ -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…
Cancel
Save