CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: making an .exe

  1. #1
    Join Date
    Mar 2004
    Posts
    339

    making an .exe

    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

  2. #2
    Join Date
    May 2003
    Location
    Germany
    Posts
    936

    Re: making an .exe

    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.
    Useful or not? Rate my posting. Thanks.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured