Create an executable [closed]

1

Good morning, I've done a C # application recently but it's still just in the form of code and I needed to create an executable! But I never did, I do not know how. Can anyone help? Thanks!

    
asked by anonymous 23.05.2017 / 11:04

2 answers

3

Click build - > publish

A screen will appear for you to configure how the installation will be done on the client's PC, configure it in the way that it meets and publish. A Setup, a Manifest, and a folder named Application files will be created where you have configured the output. On the client PC it is only you to perform the installation form that you have set up and your program will install automatically.

If you only need the executable, you can also get it in the visualStudio20XX folder - > Projects - > - > - > bin - > release, but running it will not install

    
23.05.2017 / 13:31
1

Compile your project in visual studio:

BUILD > BUILD SOLUTION or Hotkey, F6

Executable will be generated in the folder:

[Your project folder] \ bin \ Debug

    
23.05.2017 / 13:32