I need to create different assembly names depending on the target platform. For example, I have a console application "bob.exe". Instead of building for AnyCPU, I need to explicitly create for x86 and x64, and thus want "bob32.exe" and "bob64.exe". The Application tab in the project settings of Visual Studio 2010 disables the platform combo box. Build events also prevent the use of options on the platform, so I cannot rename them very easily.
Update: Manually editing the project file seems to work best, no additional files are part of the assembly, and pdbs have the corresponding name.
source
share