如何制作.net窗口应用程序的.exe

问题描述:

.exe的制作方法
我正在尝试制作exe,但遇到更多错误
制作exe的任何其他方法

how to make .exe
i m trying to make exe but i m facing more error
any other way to make exe

查找项目的.exe文件.在".. \ bin \ Debug"或".. \ bin \ Release"文件夹下查看.
To find the .exe file for your project. Look under "..\bin\Debug" or "..\bin\Release" folder.


您无需执行任何特殊操作即可为Windows应用程序生成exe.您将完成项目,它将自动生成exe并将其放置在build文件夹中.默认情况下,用于调试的构建文件夹为"bin \ debug",用于发布的构建文件夹为"bin \ release",如@Kim所述.

现在要获取异常,您需要将该异常消息添加到解决方案中,以便其他人可以理解在构建.exe时遇到什么错误?

谢谢,
hemant
You don''t have to do anything special to generate an exe for windows application when you will complile the project it will automatically build the exe and place it in build folder. By default the build folder for debug is "bin\debug" and for release it''s "bin\release" as @Kim explained.

Now for the exception you are getting you need to add that exception message to your solution so that other can understand what error you are getting while building the .exe?

Thanks,
hemant


尝试一下.这会为您提供帮助.

在.NET中创建EXE或安装文件Windows应用程序 [
Try this. This will help you.

Create an EXE or Setup File in .NET Windows Application[^]