Greetings to all
I am working with a C # solution in VS 2010. Right now, since I am targeting AnyCPU, when I want to build my installer, I can just select the release mode and create the assembly, and everything is done for me. However, pretty soon I will have to add the C ++ DLL project to the solution to execute some low-level materials. In order not to have two different download links for x86 and x64, I would like to include both assemblies in my installer. But it will be very unpleasant if I have to have separate configurations for x86 and x64. I will have to build one, then another, and then pack it. Is there a way to get Visual Studio to compile the x86 and x64 builds of a C ++ project as part of Release mode?
64bit visual-studio visual-studio-2010
Paul accisano
source share