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
Printable View
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
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.