diff --git a/CSharp.lua.Launcher/Properties/PublishProfiles/FolderProfile.pubxml b/CSharp.lua.Launcher/Properties/PublishProfiles/FolderProfile.pubxml new file mode 100644 index 00000000..548b9afb --- /dev/null +++ b/CSharp.lua.Launcher/Properties/PublishProfiles/FolderProfile.pubxml @@ -0,0 +1,13 @@ + + + + + FileSystem + Release + netcoreapp2.0 + bin\Release\PublishOutput + + \ No newline at end of file diff --git a/README.md b/README.md index d8083117..fe2ef201 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ https://yanghuan.github.io/external/bridgelua-editor/index.html ## How to Use ### Command Line Parameters ```cmd -D:\>CSharp.Lua.exe -h +D:\>donet CSharp.Lua.Launcher.dll -h Usage: CSharp.lua [-s srcfolder] [-d dstfolder] Arguments -s : source directory, all *.cs files whill be compiled diff --git a/download/autopack.cmd b/download/autopack.cmd index 42f52cbd..540c2f98 100644 --- a/download/autopack.cmd +++ b/download/autopack.cmd @@ -1,11 +1,11 @@ -set version=1.1.1 +set version=1.1.2 set binDir=CSharp.lua set coreDir=CoreSystem.lua set _7z="D:\Program Files\7-Zip\7z" set file=%binDir%-%version%.zip if exist "%file%" del "%file%" md %binDir% -xcopy "..\CSharp.lua\bin\Release\PublishOutput" %binDir% /s /e /y +xcopy "..\CSharp.lua.Launcher\bin\Release\PublishOutput" %binDir% /s /e /y md %coreDir% xcopy "..\CSharp.lua\CoreSystem.Lua" %coreDir% /s /e /y %_7z% a %file% %binDir% %coreDir% README.md