sirrocco
sirrocco

Reputation: 8055

MSBuild - how do I exclude directories starting with _resharper?

I'm trying to create an archive with msbuild and I can't seem to be able to exclude the resharper folder.

How should the rule excluding all directories that begin with _resharper look ?

Thank you.

Upvotes: 1

Views: 118

Answers (1)

sirrocco
sirrocco

Reputation: 8055

Hmm .. it seems that I found it :

<DefaultExclude Include="**\_ReSharper.*\**" />

Upvotes: 1

Related Questions