I have a solution with a few c# projects, one c++ project and a setup project. Playing with the options it looks lik I want to include in my setup project a build of the c++ dll for each different architecture (x86, x64 .. ) that the solution could run on. How would I do this – playing around with the configuration manager in the setup project it likes like I can build one or the other and not both.
Thanks
Add a configuration for each system you would like to build for.
If you want to have them all at the same time, add an empty project for each type you want built, and have them all include the same files and have different compiler settings.