Cheated and mapped AnyCPU to “Any CPU”…
That said, if you want explicit control over whether you get 32 bit or 64 bit artifacts, I’d suggest using the platform tags specifically instead of Any CPU; Any CPU will result in choosing the platform that is the least common denominator of all your dependencies. i.e., if you are building on a 64 bit system, and you have just one dependency to a 32 bit artifact, you will end up with a 32 bit build…
Regards,
Aaron