I am using Unicorn for item serialization to my local file system. In this configuration I have a collection which contains a lot of items. These items don't have to be serialized to my file system, but the root folder should.
So I included the root folder, but how can I configure Unicorn to skip its child items?
<include database="master" path="/sitecore/content/mycollection" />
I would expect something like
<include database="master" path="/sitecore/content/mycollection" excludeChilds="true />
or
<include database="master" path="/sitecore/content/mycollection"><exclude "*" /></include>