Reputation: 49
I have a C# project that I'm building both 32-bit and 64-bit dlls and (Wix) installers for, then including both MSIs in a Wix bundle. The Solution contains:
I'm using the VS Batch Build, which should build in order:
I have Project dependencies set up between the two Wix installer projects and the c# dll project (and the bundle depending on the two installer projects). When I run it as a batch build of all those components in one go, I find that both the Wix installer projects are kicked off as soon as the x64 dll is built, so the 32-bit installer picks up the previous build of the 32-bit dll.
How can I control the build order / project dependencies so they consider the target platform as well as the project hierarchy?
Upvotes: 0
Views: 28