Skip to content

Instantly share code, notes, and snippets.

View ctaggart's full-sized avatar

Cameron Taggart ctaggart

View GitHub Profile
@ctaggart
ctaggart / CreateSrcsrvAutofac.fs
Created June 17, 2013 23:39
creating a srcsrv for Autofac.pdb
open Microsoft.Cci.Pdb
open System
open System.IO
open System.Collections.Generic
open System.Text
let hashFormat (hash:byte[]) =
let sb = StringBuilder(hash.Length * 2)
for b in hash do
sb.AppendFormat("{0:x2}", b) |> ignore