I created a persistent search filter to exclude some common Visual Studio / development folders. However, when combined with a wild card, the filter fails. But, the wildcard filter works when in a separate regex filter.
Fails:
\\(obj|bin|TestResults|\.vs|_NCrunch_*)\\
Succeeds as 2 separate filters:
\\(obj|bin|TestResults|\.vs)\\
\\(_NCrunch_*)\\
How can I combine the 2 filters into one filter?