Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Build multiple solution platforms at once?

I have created in my project two additional solution platforms:

enter image description here

My active solution is "AnyCPU", when I press the button to compile the application there is a way to build also the other two platforms in their respective directories?.

This can be done?, maybe using some kind of compiler command?

like image 511
ElektroStudios Avatar asked Sep 29 '14 23:09

ElektroStudios


2 Answers

If you are using Visual Studio 2013 (which your tag would indicate), you can go to Build >> Batch Build and you can put a check mark next to each project/configuration combo you want to build. You can learn more about this here: http://msdn.microsoft.com/en-us/library/jj651644.aspx

Apparently though, VB.NET does not support batch builds, as indicated at this link.

like image 181
Icemanind Avatar answered Sep 29 '22 22:09

Icemanind


C:..........\Microsoft.NET\Framework64\v4.0.30319\msbuild.exe "C:.......\ .sln /t:build /m:8 /p:RunCodeAnalysis=false;BuildInParallel=True /v:n

Do that for each .sln you got! And put that in a batch file. The compile is out of VS.

like image 36
Bsearching Avatar answered Sep 29 '22 23:09

Bsearching