refactor: Initial release
This commit is contained in:
commit
9505750e29
447 changed files with 41522 additions and 0 deletions
29
OfficialPlugins/build_all.cmd
Normal file
29
OfficialPlugins/build_all.cmd
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
@echo off
|
||||
|
||||
set "current_dir=%CD%"
|
||||
call update_deps.cmd
|
||||
cd /d "%current_dir%"
|
||||
|
||||
del /q *.pmpl
|
||||
|
||||
for /D %%i in (*) do (
|
||||
if /I "%%i" neq "deps" (
|
||||
if /I "%%i" neq "Example" (
|
||||
if exist "%%i\.build.cmd" (
|
||||
pushd "%%i"
|
||||
echo Running .build.cmd in %%i
|
||||
call .\.build.cmd
|
||||
popd
|
||||
|
||||
rem Move pmpl files to parent directory
|
||||
move "%%i\*.pmpl" .
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
rmdir /s /q trusted_manifests
|
||||
mkdir trusted_manifests
|
||||
|
||||
cd deps
|
||||
dotnet ProjectMakoto.dll --build-manifests .. --output-manifests ../trusted_manifests
|
||||
Loading…
Add table
Add a link
Reference in a new issue