Click to See Complete Forum and Search --> : making an .exe


dummyagain
November 13th, 2005, 10:23 PM
I would like to know if i have written a program in C#, how to make it an
executable so that it can be installed in other comptuter with out Visual
Studio?

Thank you

torrud
November 14th, 2005, 01:39 AM
Well, because you have the Visual Studio the answer is quite simple. If you begin with a new project you have to choose a Windows Application. After writing the application and finishing the tests you switch the Build Configuration from Debug to Release. Now you have to compile a last one and you will find the .exe in your Projectfolder->bin->Release. Additional there is also a Projectfolder->bin->Debug where you can find an .exe of your debugging builds, but this one contains debugging informations and should not be used for delivering an application.