When Configuration Manager (or the appropriate boxes in the toolbar) has x64
Release
and the Properties Build has x86
Debug
(Without 'Active
') and F5 is clicked - VS follows Configuration Manager. So what is Properties Build for?
Edit:
This always determines the action:
This never does even if it's not set to 'Active' :
Checked with the following code:
public Form1()
{
InitializeComponent();
#if (DEBUG)
Text = "DEBUG";
#else
Text = "Release";
#endif
Text += Environment.Is64BitProcess;
}
With Configuration Manager set to Debug+x86 (despite being an x64 computer), and the Build-tab under the project's properties set to Release+x64 (Not 'Active'). The result was: "DEBUGfalse".
So what is the latter (the Build tab) for?