There was an error while loading. Please reload this page.
1 parent 4ed3a99 commit 0281ffeCopy full SHA for 0281ffe
1 file changed
src/fsdocs-tool/ProjectCracker.fs
@@ -507,7 +507,14 @@ module Crack =
507
let collectionName, projectFiles =
508
match projects, ignoreProjects with
509
| [], false ->
510
- match Directory.GetFiles(slnDir, "*.sln") with
+ let slnFiles =
511
+ Directory.GetFiles(slnDir, "*.sln*")
512
+ |> Array.filter (fun f ->
513
+ f.EndsWith(".sln", StringComparison.Ordinal)
514
+ || f.EndsWith(".slnf", StringComparison.Ordinal)
515
+ || f.EndsWith(".slnx", StringComparison.Ordinal))
516
+
517
+ match slnFiles with
518
| [| sln |] ->
519
printfn "getting projects from solution file %s" sln
520
0 commit comments