Answers for "generate exe file from c# project in visual studio code"

C#
-1

how to make a .exe file in c# visual studio

If your program is a UI (Windows Forms, Console or WPF) project, it is created 
as soon as you click start when you BUILD your project. 
This will produce an EXECUTABLE ( The .EXE file )
  
You can find it in the Bin folder of your solutions. 
(depending on the version you have also to save the project first)

In other cases you cannot build an Exe file but get a DLL,
for instance in the case of a Dynamic Link Library. 
Posted by: Guest on September-29-2021

Code answers related to "generate exe file from c# project in visual studio code"

C# Answers by Framework

Browse Popular Code Answers by Language