Skip to content

Commit bf5dd96

Browse files
committed
readme cmd update
1 parent efe67ce commit bf5dd96

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
This file is used by the publish/package process of your project. You can customize the behavior of this process
4+
by editing this MSBuild file. In order to learn more about this please visit https://go.microsoft.com/fwlink/?LinkID=208121.
5+
-->
6+
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
7+
<PropertyGroup>
8+
<PublishProtocol>FileSystem</PublishProtocol>
9+
<Configuration>Release</Configuration>
10+
<TargetFramework>netcoreapp2.0</TargetFramework>
11+
<PublishDir>bin\Release\PublishOutput</PublishDir>
12+
</PropertyGroup>
13+
</Project>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ https://yanghuan.github.io/external/bridgelua-editor/index.html
4949
## How to Use
5050
### Command Line Parameters
5151
```cmd
52-
D:\>CSharp.Lua.exe -h
52+
D:\>donet CSharp.Lua.Launcher.dll -h
5353
Usage: CSharp.lua [-s srcfolder] [-d dstfolder]
5454
Arguments
5555
-s : source directory, all *.cs files whill be compiled

download/autopack.cmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
set version=1.1.1
1+
set version=1.1.2
22
set binDir=CSharp.lua
33
set coreDir=CoreSystem.lua
44
set _7z="D:\Program Files\7-Zip\7z"
55
set file=%binDir%-%version%.zip
66
if exist "%file%" del "%file%"
77
md %binDir%
8-
xcopy "..\CSharp.lua\bin\Release\PublishOutput" %binDir% /s /e /y
8+
xcopy "..\CSharp.lua.Launcher\bin\Release\PublishOutput" %binDir% /s /e /y
99
md %coreDir%
1010
xcopy "..\CSharp.lua\CoreSystem.Lua" %coreDir% /s /e /y
1111
%_7z% a %file% %binDir% %coreDir% README.md

0 commit comments

Comments
 (0)