I\'m implementing an MSBuild framework to drive the building and deployment of many projects organized as a hierarchy.
&
Never mind.
I stumbled upon the following similar question, and figured I had to use the GetTargetPath
target, like so:
<Target Name="_CoreBuild">
<MSBuild Projects="@(Project)" Targets="GetTargetPath" Properties="Configuration=$(Configuration)">
<Output TaskParameter="TargetOutputs" ItemName="CompiledAssemblies" />
</MSBuild>
</Target>