Hi I'm very new to C#. I just finished designing a simple code program. I called it a "Guessing Game". The program is so far working fine and I would like to open it without opening my Microsoft Visual Studio.
How can I do that?
Thanks
Hi I'm very new to C#. I just finished designing a simple code program. I called it a "Guessing Game". The program is so far working fine and I would like to open it without opening my Microsoft Visual Studio.
How can I do that?
Thanks
On your project folder, open up the bin\Debug subfolder and you'll see the compiled result.
In the project file is folder "bin/debug/your_appliacion_name.exe". This is final executable program file.
Compile the Release version as .exe file, then just copy onto a machine with a suitable version of .NET Framework installed and run it there. The .exe file is located in the bin\Release subfolder of the project folder.
Set the build configuration to 'Release'
Create an executable (.exe) by Building the project. It will be in the \bin\Release folder underneath the project folder and be named 'projectname'.exe
The easiest way is:
F6
to build it