cpdll - fjq.bat 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. set SourcePath=E:\ZeusServerCS\ServerOutput
  2. set LibraryPath=E:\ZeusServerCS\Library
  3. set DistPath=E:\ZeusServer\game-server\node_modules\zeus-csharp\lib\dll
  4. @echo -----------------------------------------------------------------------------------
  5. @echo - Copy Server DLL
  6. @echo -----------------------------------------------------------------------------------
  7. @echo SourcePath=%SourcePath%
  8. @echo - %DistPath%
  9. IF EXIST "%DistPath%" (
  10. @echo -----------------------------------------------------------------------------------
  11. @echo - Begin Copy DLL - %DistPath%
  12. @echo -----------------------------------------------------------------------------------
  13. copy /Y %SourcePath%\CommonAI.dll %DistPath%
  14. copy /Y %SourcePath%\CommonAIServer.dll %DistPath%
  15. copy /Y %SourcePath%\CommonLang.dll %DistPath%
  16. copy /Y %SourcePath%\CommonMPQ.dll %DistPath%
  17. copy /Y %SourcePath%\ZeusCommon.dll %DistPath%
  18. copy /Y %SourcePath%\ZeusCommonServer.dll %DistPath%
  19. copy /Y %SourcePath%\ZeusCommonSkill.dll %DistPath%
  20. copy /Y %LibraryPath%\ZeusCommonQuest.dll %DistPath%
  21. copy /Y %LibraryPath%\ZeusCommonZone.dll %DistPath%
  22. copy /Y %SourcePath%\ZeusServerEdgeJS.dll %DistPath%
  23. copy /Y %SourcePath%\ZeusServerNode.dll %DistPath%
  24. copy /Y %SourcePath%\PomeloShare.dll %DistPath%
  25. copy /Y %SourcePath%\PomeloLog.dll %DistPath%
  26. copy /Y %SourcePath%\ICSharpCode.SharpZipLib.dll %DistPath%
  27. copy /Y %SourcePath%\..\ZeusServerEdgeJS\slice\* %DistPath%\..\slice
  28. )
  29. @set DistPath=%SourcePath%..\..\ZeusServer\game-server\node_modules\zeus-csharp\lib\dll
  30. @echo - %DistPath%
  31. @IF EXIST "%DistPath%" (
  32. @echo -----------------------------------------------------------------------------------
  33. @echo - Begin Copy DLL - %DistPath%
  34. @echo -----------------------------------------------------------------------------------
  35. copy /Y %SourcePath%\CommonAI.dll "%SourcePath%..\..\ZeusServer\game-server\node_modules\zeus-csharp\lib\dll"
  36. copy /Y %SourcePath%\CommonAIServer.dll "%SourcePath%..\..\ZeusServer\game-server\node_modules\zeus-csharp\lib\dll"
  37. copy /Y %SourcePath%\CommonLang.dll "%SourcePath%..\..\ZeusServer\game-server\node_modules\zeus-csharp\lib\dll"
  38. copy /Y %SourcePath%\CommonMPQ.dll "%SourcePath%..\..\ZeusServer\game-server\node_modules\zeus-csharp\lib\dll"
  39. copy /Y %SourcePath%\ZeusCommon.dll "%SourcePath%..\..\ZeusServer\game-server\node_modules\zeus-csharp\lib\dll"
  40. copy /Y %SourcePath%\ZeusCommonServer.dll "%SourcePath%..\..\ZeusServer\game-server\node_modules\zeus-csharp\lib\dll"
  41. copy /Y %SourcePath%\ZeusCommonSkill.dll "%SourcePath%..\..\ZeusServer\game-server\node_modules\zeus-csharp\lib\dll"
  42. copy /Y %SourcePath%\ZeusCommonZone.dll "%SourcePath%..\..\ZeusServer\game-server\node_modules\zeus-csharp\lib\dll"
  43. copy /Y %SourcePath%\ZeusCommonQuest.dll "%SourcePath%..\..\ZeusServer\game-server\node_modules\zeus-csharp\lib\dll"
  44. copy /Y %SourcePath%\ZeusServerEdgeJS.dll "%SourcePath%..\..\ZeusServer\game-server\node_modules\zeus-csharp\lib\dll"
  45. copy /Y %SourcePath%\ZeusServerNode.dll "%SourcePath%..\..\ZeusServer\game-server\node_modules\zeus-csharp\lib\dll"
  46. copy /Y %SourcePath%\pomelo-dotnetClient.dll "%SourcePath%..\..\ZeusServer\game-server\node_modules\zeus-csharp\lib\dll"
  47. copy /Y %SourcePath%\class_config.properties "%SourcePath%..\..\ZeusServer\game-server\node_modules\zeus-csharp\lib\dll"
  48. copy /Y %SourcePath%\ICSharpCode.SharpZipLib.dll "%SourcePath%..\..\ZeusServer\game-server\node_modules\zeus-csharp\lib\dll"
  49. copy /Y %SourcePath%\NPOI.*.dll "%SourcePath%..\..\ZeusServer\game-server\node_modules\zeus-csharp\lib\dll"
  50. )
  51. @echo -----------------------------------------------------------------------------------
  52. @echo - CopyDone
  53. @echo -----------------------------------------------------------------------------------