Different Assembly Name for Each Platform Target

Posted by Murray on Stack Overflow See other posts from Stack Overflow or by Murray
Published on 2010-05-17T13:53:11Z Indexed on 2010/05/17 14:00 UTC
Read the original article Hit count: 113

Filed under:
|
|

I need to generate different assembly names depending on the platform target. For example, I have a console application "bob.exe". Instead of building for AnyCPU, I need to build explicitly for x86 and x64 and thus want "bob32.exe" and "bob64.exe". The Application tab in Visual Studio 2010 project options disables the Platform combobox. Build Events also don't allow options per platform so I can't rename it afterwards very easily.

© Stack Overflow or respective owner

Related posts about .NET

Related posts about visual-studio-2010