exe file development

desperateboy

Active member
Joined
Dec 11, 2007
Messages
30
Programming Experience
Beginner
hi friends,

I want to make exe file of my project but i don't know how make.Please mention the steps of set up deployment.


Thanks,
Vishal
 
In Visual Studio 2005/2008 when you compile the application by pressing F5, the exe of the the application is created in the project's directory.
 
Whenever you build or run your app the IDE always creates the exe and dll files for you, they're located in the project's bin folder by default.
 
if you want to have a setup for your project (having it in your program files)

right click the solution, properties then publish tab.
 
Back
Top