18 lines
442 B
Batchfile
18 lines
442 B
Batchfile
|
@echo off
|
||
|
|
||
|
|
||
|
set WORKSPACE=..
|
||
|
set LUBAN_DLL=.\Tools\Luban\Luban.dll
|
||
|
set CONF_ROOT=.
|
||
|
set OUTPUT_CODE_DIR_ROOT=../Assets/DemoGame/GameScript/Hotfix/Generate
|
||
|
set OUTPUT_DATA_DIR_ROOT=../Assets/DemoGame/GameRes/Config
|
||
|
|
||
|
dotnet %LUBAN_DLL% ^
|
||
|
-t client ^
|
||
|
-c cs-simple-json ^
|
||
|
-d json ^
|
||
|
--conf %CONF_ROOT%\MiniTemplate\luban.conf ^
|
||
|
-x outputCodeDir=%OUTPUT_CODE_DIR_ROOT%/CS ^
|
||
|
-x outputDataDir=%OUTPUT_DATA_DIR_ROOT%/JSON
|
||
|
|
||
|
pause
|