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?
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?
The easiest way is:
F6
to build itMy Documents\Visual Studio 200x\Projects\my_project\
)bin\Release\
and copy the executable from there to wherever you want to store itCompile 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.
I'm using Visual Studio 2017.
It will publish, complete with setup file to the location you specified.
Hope this helps
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.
If you cannot find the .exe file, rebuild your solution and in your "Output" from Visual Studio the path to the file will be shown.