.Net whole application as a single .exe file?

后端 未结 8 1798
终归单人心
终归单人心 2020-12-14 07:04

I have developed some software with no database. I want to create a .exe of my .Net project so I can give only the .exe file to users to use the software.

Unfortunat

8条回答
  •  暗喜
    暗喜 (楼主)
    2020-12-14 07:41

    A .exe is automatically created when you build your project in Visual Studio. It can be found in /bin/debug or /bin/Release folder in your project. However, you should provide the whole Debug or Release folder to your end user, if that folder contains other files besides your .exe.

    PS: It is recommended that you provide only the "release" version of your .exe, instead of the "debug".

提交回复
热议问题