c# - How to create a single executable file in Visual Studio 2008? -
I have created a Windows Form Application in Visual Studio 2008, .NET 3.5. Now I want to finalize my project, i.e. one To create an exe file that I can give to anyone and it will be able to run it on my computer.
In my project files I found the bin / debug directory where I see the .exe file. Can I use this file in the same way, or am I missing some important finalization process?
Thank you!
You can only take EXE as long as it has no dependencies if there are any DLL files , You need to include them (or use them to combine them) You can ignore any generated PDB or XML files.
As a side note, if you are planning to deploy your project, you should compile it in release (output will be bin / release in
)
Comments
Post a Comment