문제

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?

올바른 솔루션이 없습니다

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top