UpdateTable.bat 453 B

123456789101112131415161718
  1. set WORKSPACE=..
  2. set LUBAN_DLL=%WORKSPACE%\Tools\Luban\Luban.dll
  3. set CONF_ROOT=.
  4. dotnet %LUBAN_DLL% ^
  5. -t all ^
  6. -c cs-dotnet-json ^
  7. -d json2 ^
  8. --conf %CONF_ROOT%\luban.conf ^
  9. --customTemplateDir %CONF_ROOT%\CustomTemplate ^
  10. -x outputCodeDir=output\Code ^
  11. -x outputDataDir=output\Table
  12. robocopy /E /Z /MT:16 output\Code ..\GameProject\DataTables\Code
  13. robocopy /E /Z /MT:16 output\Table ..\GameProject\DataTables\Table
  14. pause