Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to create exe of a console application

Tags:

c#

winforms

How can we create the exe for a console forms application ?

like image 544
being fab Avatar asked Oct 15 '12 04:10

being fab


People also ask

How do I create an exe for .NET core console application?

First, right-click on the project and then hit Publish, then select folder and click create. Click the edit button to edit the configuration. In the publish configuration you can check the single EXE option.

How can I create an .exe file from a Visual Studio project?

To build your program and create teh executable file choose Build My Project.exe from the Build menu - "My Project" represents teh name you chose for your project and the extension ".exe" is used to designate that the file being created will be an executable file.


1 Answers

an EXE file is created as long as you build the project. you can usually find this on the debug folder of you project.

C:\Users\username\Documents\Visual Studio 2012\Projects\ProjectName\bin\Debug 
like image 175
John Woo Avatar answered Sep 30 '22 19:09

John Woo