You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Reduce Linq usage in FileSystemGlobbing
Since GetResultsInFullPath uses a struct (FilePatternMatch) in a Linq call, this is causing extra disk space on native AOT'd applications because of struct specialization. Remove the Linq call and instead use a simple loop to create the result.
* Use ToArray instead of ToList to reduce unnecessary allocations.
---------
Co-authored-by: David Cantú <[email protected]>
0 commit comments