├── .gitignore ├── CSharpDemo ├── CSharpDemo.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── obj │ └── Debug │ ├── CSharpDemo.csproj.FileListAbsolute.txt │ └── CSharpDemo.exe ├── ExportCLI ├── AssemblyInfo.cpp ├── ExportCLI.cpp ├── ExportCLI.h ├── ExportCLI.vcxproj ├── ExportCLI.vcxproj.filters ├── ExportDll.lib ├── ExportDllAPI.h ├── ReadMe.txt ├── Stdafx.cpp ├── Stdafx.h ├── StringCvt.cpp ├── StringCvt.h ├── app.ico ├── app.rc ├── resource.h └── x64 │ └── Debug │ └── app.res ├── ExportDll.sln ├── ExportDll.v11.suo ├── ExportDll ├── ExportDll.v11.suo ├── ExportDll.vcxproj ├── ExportDll.vcxproj.filters ├── ExportDllAPI.cpp ├── ExportDllAPI.h ├── ReadMe.txt ├── dllmain.cpp ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── README.md └── bin ├── CSharpDemo.exe ├── CSharpDemo.vshost.exe ├── CSharpDemo.vshost.exe.manifest ├── ExportCLI.dll ├── ExportCLI.dll.metagen ├── ExportDll.dll ├── ExportDll.exp └── ExportDll.lib /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langyastudio/cli/HEAD/.gitignore -------------------------------------------------------------------------------- /CSharpDemo/CSharpDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langyastudio/cli/HEAD/CSharpDemo/CSharpDemo.csproj -------------------------------------------------------------------------------- /CSharpDemo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langyastudio/cli/HEAD/CSharpDemo/Program.cs -------------------------------------------------------------------------------- /CSharpDemo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langyastudio/cli/HEAD/CSharpDemo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CSharpDemo/obj/Debug/CSharpDemo.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langyastudio/cli/HEAD/CSharpDemo/obj/Debug/CSharpDemo.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /CSharpDemo/obj/Debug/CSharpDemo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langyastudio/cli/HEAD/CSharpDemo/obj/Debug/CSharpDemo.exe -------------------------------------------------------------------------------- /ExportCLI/AssemblyInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langyastudio/cli/HEAD/ExportCLI/AssemblyInfo.cpp -------------------------------------------------------------------------------- /ExportCLI/ExportCLI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langyastudio/cli/HEAD/ExportCLI/ExportCLI.cpp -------------------------------------------------------------------------------- /ExportCLI/ExportCLI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langyastudio/cli/HEAD/ExportCLI/ExportCLI.h -------------------------------------------------------------------------------- /ExportCLI/ExportCLI.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langyastudio/cli/HEAD/ExportCLI/ExportCLI.vcxproj -------------------------------------------------------------------------------- /ExportCLI/ExportCLI.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langyastudio/cli/HEAD/ExportCLI/ExportCLI.vcxproj.filters -------------------------------------------------------------------------------- /ExportCLI/ExportDll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langyastudio/cli/HEAD/ExportCLI/ExportDll.lib -------------------------------------------------------------------------------- /ExportCLI/ExportDllAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langyastudio/cli/HEAD/ExportCLI/ExportDllAPI.h -------------------------------------------------------------------------------- /ExportCLI/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langyastudio/cli/HEAD/ExportCLI/ReadMe.txt -------------------------------------------------------------------------------- /ExportCLI/Stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langyastudio/cli/HEAD/ExportCLI/Stdafx.cpp -------------------------------------------------------------------------------- /ExportCLI/Stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langyastudio/cli/HEAD/ExportCLI/Stdafx.h -------------------------------------------------------------------------------- /ExportCLI/StringCvt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langyastudio/cli/HEAD/ExportCLI/StringCvt.cpp -------------------------------------------------------------------------------- /ExportCLI/StringCvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langyastudio/cli/HEAD/ExportCLI/StringCvt.h -------------------------------------------------------------------------------- /ExportCLI/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langyastudio/cli/HEAD/ExportCLI/app.ico -------------------------------------------------------------------------------- /ExportCLI/app.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langyastudio/cli/HEAD/ExportCLI/app.rc -------------------------------------------------------------------------------- /ExportCLI/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langyastudio/cli/HEAD/ExportCLI/resource.h -------------------------------------------------------------------------------- /ExportCLI/x64/Debug/app.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langyastudio/cli/HEAD/ExportCLI/x64/Debug/app.res -------------------------------------------------------------------------------- /ExportDll.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langyastudio/cli/HEAD/ExportDll.sln -------------------------------------------------------------------------------- /ExportDll.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langyastudio/cli/HEAD/ExportDll.v11.suo -------------------------------------------------------------------------------- /ExportDll/ExportDll.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langyastudio/cli/HEAD/ExportDll/ExportDll.v11.suo -------------------------------------------------------------------------------- /ExportDll/ExportDll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langyastudio/cli/HEAD/ExportDll/ExportDll.vcxproj -------------------------------------------------------------------------------- /ExportDll/ExportDll.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langyastudio/cli/HEAD/ExportDll/ExportDll.vcxproj.filters -------------------------------------------------------------------------------- /ExportDll/ExportDllAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langyastudio/cli/HEAD/ExportDll/ExportDllAPI.cpp -------------------------------------------------------------------------------- /ExportDll/ExportDllAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langyastudio/cli/HEAD/ExportDll/ExportDllAPI.h -------------------------------------------------------------------------------- /ExportDll/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langyastudio/cli/HEAD/ExportDll/ReadMe.txt -------------------------------------------------------------------------------- /ExportDll/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langyastudio/cli/HEAD/ExportDll/dllmain.cpp -------------------------------------------------------------------------------- /ExportDll/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langyastudio/cli/HEAD/ExportDll/stdafx.cpp -------------------------------------------------------------------------------- /ExportDll/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langyastudio/cli/HEAD/ExportDll/stdafx.h -------------------------------------------------------------------------------- /ExportDll/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langyastudio/cli/HEAD/ExportDll/targetver.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langyastudio/cli/HEAD/README.md -------------------------------------------------------------------------------- /bin/CSharpDemo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langyastudio/cli/HEAD/bin/CSharpDemo.exe -------------------------------------------------------------------------------- /bin/CSharpDemo.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langyastudio/cli/HEAD/bin/CSharpDemo.vshost.exe -------------------------------------------------------------------------------- /bin/CSharpDemo.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langyastudio/cli/HEAD/bin/CSharpDemo.vshost.exe.manifest -------------------------------------------------------------------------------- /bin/ExportCLI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langyastudio/cli/HEAD/bin/ExportCLI.dll -------------------------------------------------------------------------------- /bin/ExportCLI.dll.metagen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langyastudio/cli/HEAD/bin/ExportCLI.dll.metagen -------------------------------------------------------------------------------- /bin/ExportDll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langyastudio/cli/HEAD/bin/ExportDll.dll -------------------------------------------------------------------------------- /bin/ExportDll.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langyastudio/cli/HEAD/bin/ExportDll.exp -------------------------------------------------------------------------------- /bin/ExportDll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langyastudio/cli/HEAD/bin/ExportDll.lib --------------------------------------------------------------------------------