mirror of
https://github.com/netchx/netch.git
synced 2026-03-18 18:13:21 +08:00
done
This commit is contained in:
30
scripts/PACK.BAT
Normal file
30
scripts/PACK.BAT
Normal file
@@ -0,0 +1,30 @@
|
||||
@ECHO OFF
|
||||
RD /S /Q release > NUL 2>&1
|
||||
RD /S /Q x64 > NUL 2>&1
|
||||
RD /S /Q x86 > NUL 2>&1
|
||||
|
||||
MKDIR release > NUL 2>&1
|
||||
XCOPY /E /Y ..\Netch\bin\x64\Release x64
|
||||
XCOPY /E /Y ..\Netch\bin\x86\Release x86
|
||||
|
||||
PAUSE
|
||||
|
||||
CD x64
|
||||
DEL /F /S /Q *.config
|
||||
DEL /F /S /Q *.pdb
|
||||
DEL /F /S /Q *.xml
|
||||
7z a -r Netch.x64.7z *
|
||||
MOVE Netch.x64.7z ..\release
|
||||
|
||||
CD ..\x86
|
||||
DEL /F /S /Q *.config
|
||||
DEL /F /S /Q *.pdb
|
||||
DEL /F /S /Q *.xml
|
||||
7z a -r Netch.x86.7z *
|
||||
MOVE Netch.x86.7z ..\release
|
||||
|
||||
CD ..
|
||||
RD /S /Q x64
|
||||
RD /S /Q x86
|
||||
|
||||
PAUSE
|
||||
Reference in New Issue
Block a user