copy_dll.bat 1.5 KB

1234567891011121314151617181920212223242526272829
  1. @set LibraryPath=%1
  2. @set DistPath=%2
  3. @IF EXIST "%DistPath%" (
  4. @echo -----------------------------------------------------------------------------------
  5. @echo - Copy DLL - %DistPath%
  6. @echo -----------------------------------------------------------------------------------
  7. @copy /Y %LibraryPath%\SuperSocket.Common.dll %DistPath%
  8. @copy /Y %LibraryPath%\SuperSocket.Dlr.dll %DistPath%
  9. @copy /Y %LibraryPath%\SuperSocket.SocketEngine.dll %DistPath%
  10. @copy /Y %LibraryPath%\SuperSocket.Facility.dll %DistPath%
  11. @copy /Y %LibraryPath%\SuperSocket.SocketBase.dll %DistPath%
  12. @copy /Y %LibraryPath%\CommonAI.dll %DistPath%
  13. @copy /Y %LibraryPath%\CommonAIServer.dll %DistPath%
  14. @copy /Y %LibraryPath%\CommonLang.dll %DistPath%
  15. @copy /Y %LibraryPath%\CommonMPQ.dll %DistPath%
  16. @copy /Y %LibraryPath%\ZeusCommon.dll %DistPath%
  17. @copy /Y %LibraryPath%\ZeusCommonServer.dll %DistPath%
  18. @copy /Y %LibraryPath%\ZeusCommonSkill.dll %DistPath%
  19. @copy /Y %LibraryPath%\ZeusCommonZone.dll %DistPath%
  20. @copy /Y %LibraryPath%\ZeusCommonQuest.dll %DistPath%
  21. @copy /Y %LibraryPath%\ZeusServerEdgeJS.dll %DistPath%
  22. @copy /Y %LibraryPath%\ZeusServerNode.dll %DistPath%
  23. @copy /Y %LibraryPath%\PomeloShare.dll %DistPath%
  24. @copy /Y %LibraryPath%\PomeloLog.dll %DistPath%
  25. @copy /Y %LibraryPath%\ICSharpCode.SharpZipLib.dll %DistPath%
  26. @copy /Y %LibraryPath%\slice\* %DistPath%\..\slice
  27. )