up vote 23 down vote favorite
7
share [g+] share [fb]

How can I construct a MSBuild ItemGroup to exclude .svn directories and all files within (recursively). I've got:

<ItemGroup> 
     <LibraryFiles Include="$(LibrariesReleaseDir)\**\*.*" Exclude=".svn" />
</ItemGroup>

At the moment, but this does not exclude anything!

link|improve this question

75% accept rate
feedback

3 Answers

up vote 40 down vote accepted

Thanks for your help, managed to sort it as follows:

<ItemGroup>
     <LibraryFiles Include="$(LibrariesReleaseDir)\**\*.*" Exclude="$(LibrariesReleaseDir)\**\.svn\**" />
</ItemGroup>

Turns out the pattern matching basically runs on files, so you have to exclude everything BELOW the .svn directories (.svn\**) for MSBuild to exclude the .svn directory itself.

Thanks for starting me off on the right direction! :)

link|improve this answer
1  
@Kieran Benton: thanks for the update, I'm going to submit a connect.microsoft.com request to clarify the MSDN documentation. – sixlettervariables Sep 16 '08 at 14:10
1  
I notice that you also prefixed the Exclude value with "$(LibrariesReleaseDir)\**\" (compared to the value in your OP). Is that significant? – Phoenix Mar 24 '11 at 19:22
feedback

So the issue is with chaining variables for some reason in msbuild. The following works for me, notice that I have to only use relative paths based on the MSBuildProjectDirectory variable.

<CreateItem Include="$(MSBuildProjectDirectory)\..\Client\Web\Foo.Web.UI\**\*.*"
            Exclude="$(MSBuildProjectDirectory)\..\Client\Web\Foo.Web.UI\**\.svn\**">
  <Output TaskParameter="Include" ItemName="WebFiles" />
</CreateItem>

The following does not work:

<PropertyGroup>
    <WebProjectDir>$(MSBuildProjectDirectory)\..\Client\Web\Foo.Web.UI</WebProjectDir>
</PropertyGroup>
<CreateItem Include="$(WebProjectDir)\**\*.*"
            Exclude="$(WebProjectDir)\**\.svn\**">
  <Output TaskParameter="Include" ItemName="WebFiles" />
</CreateItem>

Very strange! I just spent like 3 hrs on this one.

link|improve this answer
2  
BTW: This is the correct answer. – splattne May 13 '09 at 13:57
feedback

Here's an even better way to do it, truly recursively. I can't seem to get your solution to go more than 1 level deep:

<LibraryFiles  
    Include="$(LibrariesReleaseDir)**\*.*"  
    Exclude="$(LibrariesReleaseDir)**\.svn\**\*.*"/>
link|improve this answer
1  
Does this work on the .svn\entries file as well, given that there's no dot in the filename? – Phoenix Mar 24 '11 at 19:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.