I’m attempting to retrieve all the .csproj files in a directory except for those within a subdirectory named “test”. The include of .csproj works fine but I’m unable to exclude the test directories. For the exclusion, I’ve tried:
\test*
\test\
*/\test/*
\test<br>\test\
/\test/<br>
Thanks!
Hi Jeff,
This pattern should exclude all files in the test subdirectories, Test*.*
Regards,
Paul.
That did it. Thanks.