Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>More expanded explanation:</p> <p>Your output directory of executable file is specified by default to <strong>[your_project_directory]\bin\Debug</strong> for <em>Debug</em> build mode or to <strong>[your_project_directory]\bin\Release</strong> for <em>Release</em> build mode</p> <ul> <li>your_project_directory - place where is created your project (there is located *.csproj file)</li> </ul> <p><strong>To switch between default directories</strong> Debug/Release use solution proposed <a href="https://stackoverflow.com/a/18320710/2180645">here</a>.</p> <p>But if you want <strong>specify your own output directory</strong>, follow these steps:</p> <ol> <li>Go to <strong>Project -> [MyProjectName] Properties...</strong> (or type Alt+F7) and in properties window switch to Build tab (from left panel)</li> <li>From <strong>Configuration</strong> combobox select proper build mode (in your case <em>Release</em>) or select: "All Configurations" - the same options for both build modes</li> <li>At the end in output path textbox choose folder where you want store executable file (and other created during buil of application)</li> </ol> <p><strong>Screenshot from properties window:</strong> </p> <p><img src="https://i.stack.imgur.com/XXwh8.jpg" alt="Properties"></p> <p>This solution can be useful at least in two cases:</p> <ol> <li>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</li> <li>When your start work with real "huge project" that include many e.g. .csproj projects your can create <em>Runtime</em> directory to storage all your executable files and files created during build of application </li> </ol> <p>I hope that this description will be helpful.</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload