packdat / SourcetrailDotnetIndexer

Creates Sourcetrail-databases from .net assemblies
33 stars 13 forks source link

Question about loaded namesspaces #10

Open ricardoisdebugging opened 2 years ago

ricardoisdebugging commented 2 years ago

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

packdat commented 2 years ago

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.