I have an inclusionFilter and exclusionFilter set up for a project as
below:
<inclusionFilters>
<pathFilter>
<caseSensitive>False</caseSensitive>
<pattern>$(depotRoot)/Data/*.xml</pattern>
</pathFilter>
<actionFilter>
<actions>
<action>delete</action>
</actions>
</actionFilter>
</inclusionFilters>
<exclusionFilters>
<pathFilter>
<pattern>$(depotRoot)/Data/*Instances*.xml</
pattern>
</pathFilter>
<actionFilter>
<actions>
<action>edit</action>
<action>add</action>
</actions>
</actionFilter>
</exclusionFilters>
What I expect to happen is that it will only trigger if a Data/*.xml
file is touched and it is delete and it doesn't have Instances in its
name. However, for me its triggering on any delete within the
sourceContro <view>.
Is there something I have to do so that it'll only trigger when both
inclusions happen?