msbuild - How to make only one target BuildInParallel? -


i having target build checkin assemblies.

<target name="corebuildcheckinsubsystem" dependsontargets="builddotnetsolutions;checkinsubsystemdos">    </target> 

in builddotnetsolution build list of solution in order. not want buildinparallel checkinsubsystemdos checkin dlls. if checkin process being done in parallel save time me.

how make checkinsubsystemdos alone in buildinparallel?

an important thing note msbuild, parallelization done on level of project. targets within same project executed sequentially, while 2 different project might (or might not) executed in parallel. rephrase way, if want msbuild execute concurrently, have create multiple projects , invoke them within same <msbuild> task.

in case, code this. have list of projects or solutions build:

<itemgroup>   <myprojects include="one.proj"/>   <myprojects include="two.proj"/>   <myprojects include="three.proj"/> </itemgroup> 

the build target invoke <msbuild> target sequentially:

<target name="builddotnetsolutions" ...>   <msbuild projects="@(myprojects)" targets="build" buildinparallel="false" /> </target> 

your checkin target invoke target defined in same projects -- call mycheckin:

<target name="corebuildcheckinsubsystem" dependsontargets="builddotnetsolutions;checkinsubsystemdos">   <msbuild projects="@(myprojects)" targets="mycheckin" buildinparallel="true" /> </target> 

another option create sibling set of projects -- call mycheckinprojects , use them in checkin target:

<itemgroup>   <mycheckinprojects include="checkin_one.proj"/>   <mycheckinprojects include="checkin_two.proj"/>   <mycheckinprojects include="checkin_three.proj"/> </itemgroup> 

however suggest inserting new target existing projects.


Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -