本文介绍了编译在Visual Studio中一个独立的可执行文件(.exe)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我怎么可以在Visual Studio中一个独立的EXE。它只是一个简单的控制台应用程序,我认为用户不希望安装一个小小的控制台应用程序。我编译使用Visual Studio命令提示符下一个简单的cpp文件。请问exe文件工作,即使没有安装.NET框架?我用本地C ++ code。

how can I make a stand-alone exe in Visual Studio. Its just a simple Console application that I think users would not like to install a tiny Console application. I compiled a simple cpp file using the visual studio command prompt. Will the exe work even if the .NET framework is not installed? I used native C++ code.

推荐答案

使用管理的环境(包括任何写在C#和VB.NET)任何需要.NET框架。你可以简单地重新分配您的.exe在该情况下,但他们会需要安装适当的框架,如果他们不已经拥有了它。

Anything using the managed environment (which includes anything written in C# and VB.NET) requires the .NET framework. You can simply redistribute your .EXE in that scenario, but they'll need to install the appropriate framework if they don't already have it.

这篇关于编译在Visual Studio中一个独立的可执行文件(.exe)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-11 00:23
查看更多