单个可执行文件
如何制作在每个 Windows 7 上运行的单个可执行文件(不是安装文件)。不需要任何类型的特定框架或平台。 例如,如果我制作 C# 应用程序并尝试在另一个系统上运行,它需要 dot net 框架。我怎样才能摆脱这个问题。 我使用哪种语言或IDE来制作独立的可执行文件。
How to make single executable file ( not installation file) that run on every windows 7 . without needing any type of specific framework or platform .
For example if i make c# application and try to run on another system, it require dot net framework. How can i get rid of this problem.
Which Language or IDE i use to make independent executable file.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道这是否正是你想要的,
但为什么不直接编写一个只使用Windows API的ac应用程序并将其编译成一个可执行文件呢?
IDE 会为您编译它,您可以在任何您想要的计算机上运行这个 *.exe。
I don't know if it is exactly what you want,
but why not just write a c application that only makes use of Windows API and compile this one into an executable file?
IDE's compile it for you and you can run this *.exe on any computer you want.