1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- set SourcePath=E:\ZeusServerCS\ServerOutput
- set LibraryPath=E:\ZeusServerCS\Library
- set DistPath=E:\ZeusServer\game-server\node_modules\zeus-csharp\lib\dll
- @echo -----------------------------------------------------------------------------------
- @echo - Copy Server DLL
- @echo -----------------------------------------------------------------------------------
- @echo SourcePath=%SourcePath%
- @echo - %DistPath%
- IF EXIST "%DistPath%" (
- @echo -----------------------------------------------------------------------------------
- @echo - Begin Copy DLL - %DistPath%
- @echo -----------------------------------------------------------------------------------
- copy /Y %SourcePath%\CommonAI.dll %DistPath%
- copy /Y %SourcePath%\CommonAIServer.dll %DistPath%
- copy /Y %SourcePath%\CommonLang.dll %DistPath%
- copy /Y %SourcePath%\CommonMPQ.dll %DistPath%
- copy /Y %SourcePath%\ZeusCommon.dll %DistPath%
- copy /Y %SourcePath%\ZeusCommonServer.dll %DistPath%
- copy /Y %SourcePath%\ZeusCommonSkill.dll %DistPath%
- copy /Y %LibraryPath%\ZeusCommonQuest.dll %DistPath%
- copy /Y %LibraryPath%\ZeusCommonZone.dll %DistPath%
- copy /Y %SourcePath%\ZeusServerEdgeJS.dll %DistPath%
- copy /Y %SourcePath%\ZeusServerNode.dll %DistPath%
- copy /Y %SourcePath%\PomeloShare.dll %DistPath%
- copy /Y %SourcePath%\PomeloLog.dll %DistPath%
- copy /Y %SourcePath%\ICSharpCode.SharpZipLib.dll %DistPath%
- copy /Y %SourcePath%\..\ZeusServerEdgeJS\slice\* %DistPath%\..\slice
- )
- @set DistPath=%SourcePath%..\..\ZeusServer\game-server\node_modules\zeus-csharp\lib\dll
- @echo - %DistPath%
- @IF EXIST "%DistPath%" (
- @echo -----------------------------------------------------------------------------------
- @echo - Begin Copy DLL - %DistPath%
- @echo -----------------------------------------------------------------------------------
- copy /Y %SourcePath%\CommonAI.dll "%SourcePath%..\..\ZeusServer\game-server\node_modules\zeus-csharp\lib\dll"
- copy /Y %SourcePath%\CommonAIServer.dll "%SourcePath%..\..\ZeusServer\game-server\node_modules\zeus-csharp\lib\dll"
- copy /Y %SourcePath%\CommonLang.dll "%SourcePath%..\..\ZeusServer\game-server\node_modules\zeus-csharp\lib\dll"
- copy /Y %SourcePath%\CommonMPQ.dll "%SourcePath%..\..\ZeusServer\game-server\node_modules\zeus-csharp\lib\dll"
- copy /Y %SourcePath%\ZeusCommon.dll "%SourcePath%..\..\ZeusServer\game-server\node_modules\zeus-csharp\lib\dll"
- copy /Y %SourcePath%\ZeusCommonServer.dll "%SourcePath%..\..\ZeusServer\game-server\node_modules\zeus-csharp\lib\dll"
- copy /Y %SourcePath%\ZeusCommonSkill.dll "%SourcePath%..\..\ZeusServer\game-server\node_modules\zeus-csharp\lib\dll"
- copy /Y %SourcePath%\ZeusCommonZone.dll "%SourcePath%..\..\ZeusServer\game-server\node_modules\zeus-csharp\lib\dll"
- copy /Y %SourcePath%\ZeusCommonQuest.dll "%SourcePath%..\..\ZeusServer\game-server\node_modules\zeus-csharp\lib\dll"
- copy /Y %SourcePath%\ZeusServerEdgeJS.dll "%SourcePath%..\..\ZeusServer\game-server\node_modules\zeus-csharp\lib\dll"
- copy /Y %SourcePath%\ZeusServerNode.dll "%SourcePath%..\..\ZeusServer\game-server\node_modules\zeus-csharp\lib\dll"
- copy /Y %SourcePath%\pomelo-dotnetClient.dll "%SourcePath%..\..\ZeusServer\game-server\node_modules\zeus-csharp\lib\dll"
- copy /Y %SourcePath%\class_config.properties "%SourcePath%..\..\ZeusServer\game-server\node_modules\zeus-csharp\lib\dll"
- copy /Y %SourcePath%\ICSharpCode.SharpZipLib.dll "%SourcePath%..\..\ZeusServer\game-server\node_modules\zeus-csharp\lib\dll"
- copy /Y %SourcePath%\NPOI.*.dll "%SourcePath%..\..\ZeusServer\game-server\node_modules\zeus-csharp\lib\dll"
- )
- @echo -----------------------------------------------------------------------------------
- @echo - CopyDone
- @echo -----------------------------------------------------------------------------------
|