Try adding a regex location filter:
-\\(bin|obj)\\

The '-' matches the whole file path and excludes any path that matches the expression. The purpose of the '\' at the beginning and end of the expression is to match only a specific path part e.g. ... \bin\ ..., instead of partially matching the path part, e.g. ... \ turbine \ ...