我创建了一个在.NET中使用几个DLL和EXE的项目。
我发现有些应用程序像 一样打包成1 EXE 。
我必须知道哪种技术才能做到? 他们有什么工具可以做到吗?
答案 0 :(得分:1)
It is possible to include DLL and EXE files using just Visual Studio, as long as you add an installer project then these dependencies can be included and copied in the install folder for use by your app.
Check out this tutorial: http://www.advancedinstaller.com/user-guide/tutorial-ai-ext-vs.html, specifically section 7 'Project Dependencies'.
This response covers some good options for including as a single, non-installer exe: https://stackoverflow.com/a/4043653/1011603