C# to .exe

Status
Not open for further replies.

ZoneFire

In Runtime
Messages
154
i try to write something with C# using Microsoft Visual Studio.
so how can i compile the C# code into an .exe standalone file?
so that i just need to double click the icon in order to run the particular application...
hope someone can guide me about that...
thank you :)
 
Build > "Build <filename>"

if you have default settings it will chuck the .exe in the folder obj\Debug from your project root
 
And if you don't have VS.NET just use the compiler csc.exe.

There are several different types of builds thouse console winexe module and library. Read the documentation and you'll find out how to do it.
 
Status
Not open for further replies.
Back
Top Bottom