I am using VS 2015. Somehow I mistakenly set something, making the platform of one project of my solution fixed to either x86 or x64. I would like to change it back to the "Any CPU", just like the default setting. But I find out I can't~ So How can I change it back?
======Update=====
You can right click on the project and then select the Unload project. And again right click the project and edit your .csproj. In that, you can edit the Configuration Manager setting.
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>