├── 1.PNG ├── 2.PNG ├── AddFile.Designer.cs ├── AddFile.cs ├── AddFile.resx ├── AndLua.Designer.cs ├── AndLua.cs ├── AndLua.resx ├── AndLuaPlus.csproj ├── AndLuaPlus.csproj.user ├── AndLuaPlus.ico ├── FodyWeavers.xml ├── FodyWeavers.xsd ├── Install.Designer.cs ├── Install.cs ├── Install.resx ├── LICENSE ├── Loading.Designer.cs ├── Loading.cs ├── Loading.resx ├── NewProject.Designer.cs ├── NewProject.cs ├── NewProject.resx ├── Program.cs ├── Project.resx ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── README.md ├── Resources ├── AndLua+.exe.config ├── Lua.xshd ├── LuaConfig.txt ├── Main.txt └── icon.png ├── Settings.cs ├── Welcome.Designer.cs ├── Welcome.cs ├── Welcome.resx ├── about.Designer.cs ├── about.cs ├── about.resx ├── app.config ├── bin └── Debug │ ├── AndLua+.exe.config │ ├── AndLua+.pdb │ ├── dll │ └── IWshRuntimeLibrary.dll │ ├── libs │ ├── CSkin.dll │ ├── HZH_Controls.dll │ ├── ICSharpCode.AvalonEdit.dll │ ├── LuaInterface.dll │ ├── lua51.dll │ └── luanet.dll │ ├── libs1 │ └── HZH_Controls.dll │ └── lua │ ├── http.lua │ ├── http_headers.lua │ └── json.lua ├── libs └── ICSharpCode.SharpZipLib.dll ├── packages.config ├── project.Designer.cs └── project.cs /1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/1.PNG -------------------------------------------------------------------------------- /2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/2.PNG -------------------------------------------------------------------------------- /AddFile.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/AddFile.Designer.cs -------------------------------------------------------------------------------- /AddFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/AddFile.cs -------------------------------------------------------------------------------- /AddFile.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/AddFile.resx -------------------------------------------------------------------------------- /AndLua.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/AndLua.Designer.cs -------------------------------------------------------------------------------- /AndLua.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/AndLua.cs -------------------------------------------------------------------------------- /AndLua.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/AndLua.resx -------------------------------------------------------------------------------- /AndLuaPlus.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/AndLuaPlus.csproj -------------------------------------------------------------------------------- /AndLuaPlus.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/AndLuaPlus.csproj.user -------------------------------------------------------------------------------- /AndLuaPlus.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/AndLuaPlus.ico -------------------------------------------------------------------------------- /FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/FodyWeavers.xml -------------------------------------------------------------------------------- /FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/FodyWeavers.xsd -------------------------------------------------------------------------------- /Install.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/Install.Designer.cs -------------------------------------------------------------------------------- /Install.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/Install.cs -------------------------------------------------------------------------------- /Install.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/Install.resx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/LICENSE -------------------------------------------------------------------------------- /Loading.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/Loading.Designer.cs -------------------------------------------------------------------------------- /Loading.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/Loading.cs -------------------------------------------------------------------------------- /Loading.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/Loading.resx -------------------------------------------------------------------------------- /NewProject.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/NewProject.Designer.cs -------------------------------------------------------------------------------- /NewProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/NewProject.cs -------------------------------------------------------------------------------- /NewProject.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/NewProject.resx -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/Program.cs -------------------------------------------------------------------------------- /Project.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/Project.resx -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/README.md -------------------------------------------------------------------------------- /Resources/AndLua+.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/Resources/AndLua+.exe.config -------------------------------------------------------------------------------- /Resources/Lua.xshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/Resources/Lua.xshd -------------------------------------------------------------------------------- /Resources/LuaConfig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/Resources/LuaConfig.txt -------------------------------------------------------------------------------- /Resources/Main.txt: -------------------------------------------------------------------------------- 1 | print("Hello World!") -------------------------------------------------------------------------------- /Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/Resources/icon.png -------------------------------------------------------------------------------- /Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/Settings.cs -------------------------------------------------------------------------------- /Welcome.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/Welcome.Designer.cs -------------------------------------------------------------------------------- /Welcome.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/Welcome.cs -------------------------------------------------------------------------------- /Welcome.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/Welcome.resx -------------------------------------------------------------------------------- /about.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/about.Designer.cs -------------------------------------------------------------------------------- /about.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/about.cs -------------------------------------------------------------------------------- /about.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/about.resx -------------------------------------------------------------------------------- /app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/app.config -------------------------------------------------------------------------------- /bin/Debug/AndLua+.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/bin/Debug/AndLua+.exe.config -------------------------------------------------------------------------------- /bin/Debug/AndLua+.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/bin/Debug/AndLua+.pdb -------------------------------------------------------------------------------- /bin/Debug/dll/IWshRuntimeLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/bin/Debug/dll/IWshRuntimeLibrary.dll -------------------------------------------------------------------------------- /bin/Debug/libs/CSkin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/bin/Debug/libs/CSkin.dll -------------------------------------------------------------------------------- /bin/Debug/libs/HZH_Controls.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/bin/Debug/libs/HZH_Controls.dll -------------------------------------------------------------------------------- /bin/Debug/libs/ICSharpCode.AvalonEdit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/bin/Debug/libs/ICSharpCode.AvalonEdit.dll -------------------------------------------------------------------------------- /bin/Debug/libs/LuaInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/bin/Debug/libs/LuaInterface.dll -------------------------------------------------------------------------------- /bin/Debug/libs/lua51.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/bin/Debug/libs/lua51.dll -------------------------------------------------------------------------------- /bin/Debug/libs/luanet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/bin/Debug/libs/luanet.dll -------------------------------------------------------------------------------- /bin/Debug/libs1/HZH_Controls.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/bin/Debug/libs1/HZH_Controls.dll -------------------------------------------------------------------------------- /bin/Debug/lua/http.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/bin/Debug/lua/http.lua -------------------------------------------------------------------------------- /bin/Debug/lua/http_headers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/bin/Debug/lua/http_headers.lua -------------------------------------------------------------------------------- /bin/Debug/lua/json.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/bin/Debug/lua/json.lua -------------------------------------------------------------------------------- /libs/ICSharpCode.SharpZipLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/libs/ICSharpCode.SharpZipLib.dll -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/packages.config -------------------------------------------------------------------------------- /project.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/project.Designer.cs -------------------------------------------------------------------------------- /project.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-xc/AndLuaPlus/HEAD/project.cs --------------------------------------------------------------------------------