How do I save my work to a .exe?
I am experimenting with C# 2005 Express. I have written a little code and thought it would be nice to create the .exe in order to really test it. However, on first view of the C# 2005 Express user interface, I don't see how to create an .exe from the code I have written. Can anyone give me an idea on who to do this?
To attempt to build and debug (run it, but let you see what's going on if something is broken), press F5. To just build it, click Build->Build Solution. Then go into the solution's directory and find the executable it generated.
Thanks for taking my question seriously! I obviously was not looking in the right locations for the answer. After seve7 answered my question, I was then able to find the information at this link
ms-help://MS.VSExpressCC.v80/MS.NETFramework.v20.en/dv_csexpresscon/html/25638046-eda3-4678-80e2-f5f456acfaed.htm
in the help file.
Thank you very much for your help!