@echo off

SET Pash=%cd%

rem 删除当前目录下所有obj,bin目录
for /f "tokens=*" %%a in ('dir obj /b /ad /s ^|sort') do rd "%%a" /s/q
for /f "tokens=*" %%a in ('dir bin /b /ad /s ^|sort') do rd "%%a" /s/q

del %Pash%\Build\Release\Client\*.* /s/q
del %Pash%\Build\Release\WcfService\*.* /s/q
del %Pash%\Build\Release\WcfService\Modules\*.* /s/q

rem 跳转目录
cd %Pash%\Build\Release\WebApp
del /s /q *
for /F %%i in ('dir /b') do rmdir /s /q %%i

echo 清理完成!

mkdir %Pash%\Services\POYA.ACS.AppServer\bin\Debug\Modules

cd %Pash%\Services\POYA.ACS.AppServer\bin\Debug\Modules
echo.>>服务插件测试.txt

pause

相关文章:

  • 2021-11-21
  • 2021-09-04
  • 2022-12-23
  • 2022-12-23
  • 2022-03-05
  • 2022-01-16
  • 2022-12-23
  • 2021-11-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-02
  • 2022-02-24
相关资源
相似解决方案