More expanded explanation:
Your output directory of executable file is specified by default to [your_project_directory]\bin\Debug for Debug build mode or to [your_project_directory]\bin\Release for Release build mode
- your_project_directory - place where is created your project (there is located *.csproj file)
To switch between default directories Debug/Release use solution proposed here.
But if you want specify your own output directory, follow these steps:
- Go to Project -> [MyProjectName] Properties... (or type Alt+F7) and in properties window switch to Build tab (from left panel)
- From Configuration combobox select proper build mode (in your case Release) or select: "All Configurations" - the same options for both build modes
- At the end in output path textbox choose folder where you want store executable file (and other created during buil of application)
Screenshot from properties window:
This solution can be useful at least in two cases:
- When are you learning and you want not waste space on your disc, then you can specyfy outbut file for all your project to one tmp directory and clean it in some period of time from not necessary files
- When your start work with real "huge project" that include many e.g. .csproj projects your can create Runtime directory to storage all your executable files and files created during build of application
I hope that this description will be helpful.