Build multiple solution platforms at once?

I created two additional solution platforms in my project:

enter image description here

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

Can this be done ?, perhaps using some kind of compiler command?

+5
source share
2 answers

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

Do this for every .sln you received! And put it in a batch file. Compilation outside VS.

+3
source

If you are using Visual Studio 2013 (as indicated by your tag), you can go to Build >> Batch Build , and you can check the box next to each combo / configuration you want to create. You can learn more about this here: http://msdn.microsoft.com/en-us/library/jj651644.aspx

Apparently, VB.NET does not support batch assemblies, as indicated on this link .

+19
source

Source: https://habr.com/ru/post/1203661/


All Articles