One of projects in our solution references a third party .NET C++ assembly which exists as 64 and 32 bit version. As we wanna provide our application for 32 & 64 bit systems we currently start two Builds (TFS 2008/Team Build) while each build is given a different value for property "PlatformTarget" which decides whether to reference the 64 or 32 Bit C++ assembly (all other projects are C# Code). Is there a best practice how to customize a BuildType so we get a 64/32 Bit Version by just one Build, i.e. compile a 64/32 Bit Version in one Build?
Thanks in advance.