We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2101df0 commit e435b6eCopy full SHA for e435b6e
src/absil/ilwritepdb.fs
@@ -449,8 +449,8 @@ let generatePortablePdb (embedAllSource:bool) (embedSourceList:string list) (sou
449
let convert (content:IEnumerable<Blob>) =
450
use sha = System.Security.Cryptography.SHA1.Create() // IncrementalHash is core only
451
let hash = content
452
- |> Seq.map ( fun c -> c.GetBytes().Array |> sha.ComputeHash )
453
- |> Seq.collect id |> Array.ofSeq |> sha.ComputeHash
+ |> Seq.collect (fun c -> c.GetBytes().Array |> sha.ComputeHash)
+ |> Array.ofSeq |> sha.ComputeHash
454
BlobContentId.FromHash(hash)
455
System.Func<IEnumerable<Blob>, BlobContentId>( convert )
456
0 commit comments