Skip to content

Commit

Permalink
fix executionorder
Browse files Browse the repository at this point in the history
  • Loading branch information
anpin committed Apr 18, 2024
1 parent 3bb5d50 commit e8d14aa
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -344,17 +344,18 @@ let initTargets () =
"RestoreTools" ==> "Build" ==> "CleanupCode" |> ignore

//benchmarks
"GenerateBench" ==> "NBench" |> ignore
"RunTests" ==> "GenerateBench" ==> "NBench" |> ignore

//docs
"Build" ==> "DocFx" |> ignore
"DocFx" ==> "ServeDocFx" |> ignore

// all
"BuildRelease" ==> "All" |> ignore
"RunTests" ==> "All" |> ignore
"NBench" ==> "All" |> ignore
"Nuget" ==> "All" |> ignore

//docs
"RestoreTools" ==> "DocFx" |> ignore
"DocFx" ==> "ServeDocFx" |> ignore
"NBench" ==> "All" |> ignore
"DocFx" ==> "All" |> ignore

//workaround for https://github.com/fsprojects/FAKE/issues/2744
Microsoft.Build.Logging.StructuredLogger.Strings.Initialize()
Expand Down

0 comments on commit e8d14aa

Please sign in to comment.