I have a solution which contains two C++ and two C# projects. For the solution I have a Win32 configuration, which has the two C++ files as Win32
and the two C# files as AnyCPU
. The x64 solution has C++ as x64
and C# as AnyCPU
.
For the Win32 solution, the C++ files build in the /x86/Release/
folder, and I've set the C# files to output to the same folder. However, because it's set to AnyCPU
, the x64 solution also has C# output to the /x84/Release/
folder.
I was hoping there would be some kind of macro in VS2012 that would allow me to select the solution's configuration so that I could set the output to $(SolnConfig)/Release
, but there doesn't seem to be anything of the sort.
Is there any way I could (relatively) directly set the output for AnyCPU
to x86 and x64 directories for respective solutions?