conditional 32/64bit dll to program folder

we're using a component wich requires us to deliver a few .dll to the program's folder. The component has separate dll for 32/64bit (with a different name-schema).In our MSI-installer project on WiX we choose already the right one depending wether we're on a 64bit OS or not.

Now when it comes to use wyBuild to Update such a dll... can I only drag both versions to "Your program's folder" which will end up in having all the 32/64 DLLs in program folder at last? Or is there some condition to tell wyBuild per File to install only if running on 32 resp. 64 bit systems?

As of wyBuild 2.6.16 you can handle this 1 of 2 ways. Either install the 32-bit & 64-bit files to everyone's machines.

Or have a separate wyBuild project for the 32-bit and 64-bit versions. That is, the 32-bit project will have every file that consists of your 32-bit version of your app, and the 64-bit project will have every files that consist of the 64-bit version of your app.

Does that make sense?

ACK 🙂