I want to create single window application setup that can be installed both on 32 bit as well as on 64 bit machine. I have few dlls that can be used according to DLL version only i.e. A.dll(32bit), A.dll(64bit).
If software is being installed on 32 bit machine, all 32bit dlls should be used otherwise other.
Now I can create two different setups by building project twice. However I want to have just one setup that will take care automatically.
I have gone through this link which seems to be what I am looking for however it's based on the product they are selling not default windows setup creation wizard.
I found a duplicate question here with no answer.