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
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".