I build whole Visual Studio solution using msbuild, it worked fine but there is one project not being built when I build whole solution
This is my msbuild script
<MSBuild Condition="'$(debug)' ==''"
Projects="$(MySolution)"
Targets="build"
Properties="Configuration=Release">
<Output TaskParameter="TargetOutputs" ItemName="BuildOutput" />
</MSBuild>
Something I need to check on this specific project in my Visual Studio solution?
If this is a new project added to a solution and all other projects are building fine, my guess is that the new project has not been included in the solution configuration build list. In VS Solution Explorer right click on the solution node and open the configuration manager dialog and make sure your new project is checked for build in all relevant configuration (Debug, Release…), I am talking about this dialog: