1234567891011121314151617181920212223242526272829 |
- @set LibraryPath=%1
- @set DistPath=%2
- @IF EXIST "%DistPath%" (
- @echo -----------------------------------------------------------------------------------
- @echo - Copy DLL - %DistPath%
- @echo -----------------------------------------------------------------------------------
- @copy /Y %LibraryPath%\SuperSocket.Common.dll %DistPath%
- @copy /Y %LibraryPath%\SuperSocket.Dlr.dll %DistPath%
- @copy /Y %LibraryPath%\SuperSocket.SocketEngine.dll %DistPath%
- @copy /Y %LibraryPath%\SuperSocket.Facility.dll %DistPath%
- @copy /Y %LibraryPath%\SuperSocket.SocketBase.dll %DistPath%
- @copy /Y %LibraryPath%\CommonAI.dll %DistPath%
- @copy /Y %LibraryPath%\CommonAIServer.dll %DistPath%
- @copy /Y %LibraryPath%\CommonLang.dll %DistPath%
- @copy /Y %LibraryPath%\CommonMPQ.dll %DistPath%
- @copy /Y %LibraryPath%\ZeusCommon.dll %DistPath%
- @copy /Y %LibraryPath%\ZeusCommonServer.dll %DistPath%
- @copy /Y %LibraryPath%\ZeusCommonSkill.dll %DistPath%
- @copy /Y %LibraryPath%\ZeusCommonZone.dll %DistPath%
- @copy /Y %LibraryPath%\ZeusCommonQuest.dll %DistPath%
- @copy /Y %LibraryPath%\ZeusServerEdgeJS.dll %DistPath%
- @copy /Y %LibraryPath%\ZeusServerNode.dll %DistPath%
- @copy /Y %LibraryPath%\PomeloShare.dll %DistPath%
- @copy /Y %LibraryPath%\PomeloLog.dll %DistPath%
- @copy /Y %LibraryPath%\ICSharpCode.SharpZipLib.dll %DistPath%
- @copy /Y %LibraryPath%\slice\* %DistPath%\..\slice
- )
|