PostBuild.bat 203 B

123456789
  1. RD /S /Q %TargetDir%bin >NUL 2>&1
  2. XCOPY /s /Y %SolutionDir%Binaries %TargetDir%bin\ >NUL
  3. DEL /f %TargetDir%*.config >NUL 2>&1
  4. DEL /f %TargetDir%*.pdb >NUL 2>&1
  5. DEL /f %TargetDir%*.xml >NUL 2>&1
  6. exit 0