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
I believe the answer is both no,
Files are found via:
/// Get all appropriate files, either recursively or non-recursivelylet recallFiles isRec path =seq{for f in Directory.GetFiles path doif isFSharpFile f thenyield f
if isRec thenfor d in Directory.GetDirectories path doyield! allFiles isRec d
}
We could add some logic not to look into the obj folder.
Not really a high priority for me personally.
Is this intentional and necessary?
The text was updated successfully, but these errors were encountered: