SourcetrailDotnetIndexer icon indicating copy to clipboard operation
SourcetrailDotnetIndexer copied to clipboard

Question about loaded namesspaces

Open ricardoisdebugging opened this issue 4 years ago • 1 comments

Hi,

There is a question for the command of loading namespaces. In your README.md, it said 截图_20211117093338

What if in the project references, there are many references that are used in the namespaces? For instance, in my project, there are lots of references 截图_20211117093548

Should I type them many times like -f ^System -f ^System.Buffers -f ^System.Data -f ^System.Data.DataSetExtensions?

Bests

ricardoisdebugging avatar Nov 17 '21 01:11 ricardoisdebugging

Specifying -f ^System is sufficient. As the parameter is treated as a regex-pattern, it matches all namespaces starting with System, i.e. System, System.Buffers, System.Drawing, etc.

packdat avatar Nov 17 '21 17:11 packdat