Skip to content

Commit

Permalink
Release ビルドまとめるバッチ
Browse files Browse the repository at this point in the history
  • Loading branch information
mfakane committed Dec 30, 2022
1 parent 1412e84 commit e7ec369
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,5 @@ packages/
_*
.localhistory/
.idea/
MikuMikuMoving/
MikuMikuMoving/
Publish/
15 changes: 15 additions & 0 deletions PublishToDir.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
@echo off

rem enumerate through directories and copy their bin/Release/net461 to Publish dir

cd %~dp0

if not exist Publish mkdir Publish

for /f "delims=" %%i in ('dir /b /ad') do (
echo %%i
if exist %%i\bin\Release\net461\%%i.dll (
copy %%i\bin\Release\net461\%%i.dll Publish
copy %%i\bin\Release\net461\%%i.txt Publish
)
)

0 comments on commit e7ec369

Please sign in to comment.