Build MSBuild target without dependencies

I would like to reiterate @EMP’s solution (and I can’t vote him up due to my puny reputation).

The correct way to avoid MSBuild’s default behavior of rebuilding all the dependencies listed in the project file is to set the BuildProjectReferences property to false.

In his answer he invokes MSBuild from within an MSBuild script; here’s an example from the command line:

MSBuild myproj.csproj /p:Configuration=Debug /p:BuildProjectReferences=false /t:Build

Leave a Comment