Skip to content

Commit c7dba98

Browse files
committed
update test timeout and dependency chains
1 parent 378b927 commit c7dba98

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

build/Program.fs

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,10 @@ let init args =
134134
Target.create "Test:net9.0" (fun _ -> testTFM "net9.0")
135135
Target.create "Test:net10.0" (fun _ -> testTFM "net10.0")
136136

137+
"Test:net8.0"
138+
?=> "Test:net9.0"
139+
|> ignore
140+
137141
"Build"
138142
==> ("Test:net8.0")
139143
=?> ("Test", not ignoreTests)
@@ -204,7 +208,11 @@ let init args =
204208
Target.create "Release" DoNothing
205209

206210
"Clean"
207-
==> "CheckFormat"
211+
==> "Default"
212+
|> ignore
213+
214+
"Clean"
215+
?=> "CheckFormat"
208216
==> "Build"
209217
==> "Test"
210218
==> "Default"

0 commit comments

Comments
 (0)