There is a question for the command of loading namespaces. In your README.md, it said
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
Should I type them many times like
-f ^System -f ^System.Buffers -f ^System.Data -f ^System.Data.DataSetExtensions?
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.
Hi,
There is a question for the command of loading namespaces. In your README.md, it said
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
Should I type them many times like
-f ^System -f ^System.Buffers -f ^System.Data -f ^System.Data.DataSetExtensions
?Bests