Skip to content

Commit

Permalink
readme cmd update
Browse files Browse the repository at this point in the history
  • Loading branch information
yanghuan committed Feb 5, 2018
1 parent efe67ce commit bf5dd96
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is used by the publish/package process of your project. You can customize the behavior of this process
by editing this MSBuild file. In order to learn more about this please visit https://go.microsoft.com/fwlink/?LinkID=208121.
-->
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<PublishProtocol>FileSystem</PublishProtocol>
<Configuration>Release</Configuration>
<TargetFramework>netcoreapp2.0</TargetFramework>
<PublishDir>bin\Release\PublishOutput</PublishDir>
</PropertyGroup>
</Project>
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions download/autopack.cmd
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit bf5dd96

Please sign in to comment.