运行没有 DLL 文件的工具 - Visual Basic 2008
我的应用程序有一个 Windows Media Player。当我调试时,它会为我提供一些带有该程序的其他 dll 文件,随身携带这些文件会很痛苦。我该如何摆脱这些,但保持我的 Windows Media Player 在程序中实现?他们是我可以将其添加到项目文件或其他文件中的方法吗?如果没有,有人知道其他好的媒体播放器吗?
I have a Windows Media Player with my application. And when I debug, it gives me some other dll files with the program, and it would be a pain in the butt to carry those files around with me. How would I get rid of these but keep my Windows Media Player implemented to the program? Is their a way I can add this to the project files or something? If not does anyone know any other good media players?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您想说的是,您希望将外部 DLL 编译到可执行文件中,以便可以交付一个 .exe 文件。不幸的是,这并不是一件容易做到的事情。
我找到了这篇文章: http ://www.developerfusion.com/code/4504/merge-an-exe-and-a-dll-into-one-exe/ 您必须使用程序 ILMerge 来执行此操作。
I think what you're trying to say is that you want to compile your external DLL's into your executable so you can deliver one .exe file. Unfortunately this is not something easily done.
I found this post: http://www.developerfusion.com/code/4504/merge-an-exe-and-a-dll-into-one-exe/ where you have to use the program ILMerge to do it.