Skip to content

Commit 3343b4f

Browse files
authored
Move to slnx solution format (#2221)
* Move to slnx solution format * anchor build script to new slnx file * do not build build.csproj during release * reanchor tests to slnx
1 parent 98b772c commit 3343b4f

File tree

4 files changed

+104
-614
lines changed

4 files changed

+104
-614
lines changed

build/BuildInformation.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ type Paths =
1818
static member Root =
1919
let mutable dir = DirectoryInfo(".")
2020
let mutable rooted = false
21-
while not(rooted) && dir.GetFiles("*.sln").Length = 0 do
21+
while not(rooted) && dir.GetFiles("*.slnx").Length = 0 do
2222
match dir.Parent with
2323
| NonNull parent -> dir <- parent
2424
| _ -> rooted <- true

0 commit comments

Comments
 (0)