6 lines
298 B
Text
6 lines
298 B
Text
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||
|
<Target Name="CheckAPI">
|
||
|
<Message Condition="'$(API_Family)'!='$(PROJ_Target)'" Text="Skipped project build"></Message>
|
||
|
<CallTarget Condition="'$(API_Family)'=='$(PROJ_Target)'" Targets="Build"/>
|
||
|
</Target>
|
||
|
</Project>
|