Reputation: 239
I have 6 projects in my Universal Windows
solution. Some of then have referrence to other projects. What is the simple way to switch target platform in entire solution?
For example, i have project blahblah.Core
and blablah.Infrastructure
. Second project got refference to first at path ...blahblah.Core\bin\Debug\x86
. To build solution for ARM
i need to build blahblah.Core
for ARM
, then delete refference from blablah.Infrastructure
, then add new one for ...blahblah.Core\bin\Debug\ARM
.
Upvotes: 2
Views: 66
Reputation: 65534
The fastest?
Save different configurations:
In the Build menu, click Configuration Manager.
In the Active solution platform box, select the platform you want your solution to target, or select <New> to create a new platform. Visual Studio will compile your application to target the platform that is set as the active platform in the Configuration Manager dialog box.
Ref: How to: Configure Projects to Target Multiple Platforms
Upvotes: 3
Reputation: 692
Goto Solution Properties >> Configuration and you can manage or set build order from it for your solution and build entire solution
Upvotes: 2