Skip to content

Commit dcea670

Browse files
committed
Fix docs build when no debug build present, suppress signature file var name mismatch errors
1 parent 028bb07 commit dcea670

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

build.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ Target.create "NuGet" (fun _ ->
127127

128128
Target.create "GenerateDocs" (fun _ ->
129129
Shell.cleanDir ".fsdocs"
130-
DotNet.exec id "fsdocs" "build --clean" |> ignore
130+
DotNet.exec id "fsdocs" "build --clean --properties Configuration=Release" |> ignore
131131
)
132132

133133
// --------------------------------------------------------------------------------------

src/FSharp.Control.AsyncSeq/AsyncSeq.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ open System.Threading.Tasks
1212
open System.Runtime.ExceptionServices
1313
open System.Linq
1414

15-
#nowarn "40"
15+
#nowarn "40" "3218"
1616

1717
// ----------------------------------------------------------------------------
1818

0 commit comments

Comments
 (0)