We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 028bb07 commit dcea670Copy full SHA for dcea670
2 files changed
build.fsx
@@ -127,7 +127,7 @@ Target.create "NuGet" (fun _ ->
127
128
Target.create "GenerateDocs" (fun _ ->
129
Shell.cleanDir ".fsdocs"
130
- DotNet.exec id "fsdocs" "build --clean" |> ignore
+ DotNet.exec id "fsdocs" "build --clean --properties Configuration=Release" |> ignore
131
)
132
133
// --------------------------------------------------------------------------------------
src/FSharp.Control.AsyncSeq/AsyncSeq.fs
@@ -12,7 +12,7 @@ open System.Threading.Tasks
12
open System.Runtime.ExceptionServices
13
open System.Linq
14
15
-#nowarn "40"
+#nowarn "40" "3218"
16
17
// ----------------------------------------------------------------------------
18
0 commit comments