Hi,
Is there a way for me to specify default excludes ( or define it for multiple ItemGroups ) This is so that files like .svn for subversion, _vti* etc are ignored during processing of lists (especially copy ).
Alternatively is it possible for me to give a set of wild cards in the exclude attribute of Item Group
Thanks,
Hari

Default Excludes a la nAnt
Sundaywork
<ItemGroup>
<Html Include="**\*.html" Exclude="_vti*.html" />
<!-- or -->
<Html Include="a.html;b.html;c.html;fold1\d.html;fold2\e.html"/>
</ItemGroup>
to scoop up all HTML files under the project dir but exclude those that start with _vti or just explicitly specify the files you want (leaving out the one you don't want).