Question

I have batch file to build a .NET solution like below:

<MSBuild Projects="$(BuildDirectoryPath)\$(TrunkBuildDirectoryName)\Core\Core.sln" Properties="Configuration=Debug"   Targets="Clean;Build" />
<MSBuild Projects="$(BuildDirectoryPath)\$(TrunkBuildDirectoryName)\ExternalSystems\ExternalSystems.sln" Properties="Configuration=Debug"   Targets="Clean;Build" />
<MSBuild Projects="$(BuildDirectoryPath)\$(TrunkBuildDirectoryName)\MDMAPI\MDMAPI.sln" Properties="Configuration=Debug"   Targets="Clean;Build" />

How do I exclude some projects and folders while building a visual studio solution from batch file script?

No correct solution

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top