@echo off echo VNCServerList Debug 배포 패키지 생성 echo. REM Debug 폴더 확인 if not exist "bin\Debug" ( echo 오류: bin\Debug 폴더를 찾을 수 없습니다! echo Visual Studio에서 먼저 빌드해주세요. pause exit /b 1 ) REM 배포 폴더 생성 if exist "deploy" rmdir /s /q "deploy" mkdir deploy REM Debug 폴더의 모든 파일 복사 echo Debug 폴더에서 파일 복사 중... xcopy "bin\Debug\*.*" "deploy\" /E /I /Y REM .pdb 파일 제거 (디버그 심볼) if exist "deploy\*.pdb" del "deploy\*.pdb" REM README 추가 if exist "README_deploy.txt" copy "README_deploy.txt" "deploy\README.txt" echo. echo 배포 패키지가 생성되었습니다! echo. echo 포함된 파일: dir deploy /b echo. echo 이제 deploy 폴더를 압축해서 배포하세요. pause