Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions Expecto.BenchmarkDotNet/Expecto.BenchmarkDotNet.fs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ open BenchmarkDotNet.Loggers
open BenchmarkDotNet.Order
open BenchmarkDotNet.Reports
open BenchmarkDotNet.Validators
open System.Globalization

[<AutoOpen>]
[<CompilationRepresentation(CompilationRepresentationFlags.ModuleSuffix)>]
Expand All @@ -38,7 +39,7 @@ module BenchmarkDotNet =
filters : IFilter list
artifactsPath : string
logicalGroupRules : BenchmarkLogicalGroupRule list
encoding: Encoding
cultureInfo: CultureInfo
options: ConfigOptions
}
interface IConfig with
Expand All @@ -56,7 +57,7 @@ module BenchmarkDotNet =
member x.GetFilters() = Seq.ofList x.filters
member x.ArtifactsPath = x.artifactsPath
member x.GetLogicalGroupRules() = Seq.ofList x.logicalGroupRules
member x.Encoding = x.encoding
member x.CultureInfo = x.cultureInfo
member x.Options = x.options

let private synchronisedLogger =
Expand All @@ -70,6 +71,10 @@ module BenchmarkDotNet =
cl.WriteLine()
member __.Flush () =
cl.Flush()
member __.Id =
cl.Id
member __.Priority =
cl.Priority
}

let benchmarkConfig =
Expand All @@ -88,7 +93,7 @@ module BenchmarkDotNet =
filters = def.GetFilters() |> List.ofSeq
artifactsPath = def.ArtifactsPath
logicalGroupRules = def.GetLogicalGroupRules() |> List.ofSeq
encoding = def.Encoding
cultureInfo = def.CultureInfo
options = def.Options
}

Expand Down
2 changes: 1 addition & 1 deletion paket.dependencies
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ nuget FsCheck ~> 2.14
nuget Hopac ~> 0.4
nuget DiffPlex ~> 1.5
nuget Mono.Cecil ~> 0.11
nuget BenchmarkDotNet ~> 0.12
nuget BenchmarkDotNet ~> 0.12.1

group Build
source https://api.nuget.org/v3/index.json
Expand Down
Loading