#2414 added support for msbuild /restore /t:Target which executes /t:Restore in a new build context before invoking /t:Target.
Is it possible to perform the same behavior from the MSBuild task?
For example, i'd love to be able to do this
<Project>
<Target Name="CiBuild">
<MSBuild Projects="MyProj.sln"
Targets="Build"
Restore="true" />
</Target>
</Project>
cc @jeffkl
#2414 added support for
msbuild /restore /t:Targetwhich executes/t:Restorein a new build context before invoking/t:Target.Is it possible to perform the same behavior from the MSBuild task?
For example, i'd love to be able to do this
cc @jeffkl