We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b526ce9 commit b4f063cCopy full SHA for b4f063c
build.fsx
@@ -119,15 +119,17 @@ Target.create "Publish" ignore
119
120
// Build order
121
"Clean"
122
- ==> "Meta"
123
- ==> "Restore"
124
- ==> "Build"
125
- ==> "Package"
126
- ==> "GenerateDocs"
127
- ==> "PublishNuget"
128
- ==> "ReleaseDocs"
129
- ==> "Publish"
130
-
+ ==> "Meta"
+ ==> "Restore"
+ ==> "Build"
+ ==> "Package"
+ ==> "PublishNuget"
+ ==> "Publish"
+
+// Documentation generation is separate from the build
+// because it should be done by the Github workflow
131
+"GenerateDocs"
132
+ ==> "ReleaseDocs"
133
134
// start build
135
Target.runOrDefault "Build"
0 commit comments