File tree Expand file tree Collapse file tree 3 files changed +33
-1
lines changed Expand file tree Collapse file tree 3 files changed +33
-1
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ nuget DiffPlex
19
19
nuget JetBrains.Profiler.Kernel.Windows.Api
20
20
nuget Humanizer
21
21
nuget NDesk.Options
22
+ nuget BenchmarkDotNet prerelease
22
23
23
24
//Rx-Main on its does not seem to work
24
25
nuget Rx-Core
Original file line number Diff line number Diff line change
1
+ using System ;
2
+ using System . Collections . Generic ;
3
+ using System . Linq ;
4
+ using System . Threading . Tasks ;
5
+ using BenchmarkDotNet . Configs ;
6
+ using BenchmarkDotNet . Running ;
7
+ using Tests . Document . Multiple . Bulk ;
8
+ using BenchmarkDotNet . Jobs ;
9
+
10
+ namespace Tests
11
+ {
12
+ public class Program
13
+ {
14
+ public static void Main ( string [ ] args )
15
+ {
16
+ var summary = BenchmarkRunner . Run < BulkApiTests > ( new Config ( ) ) ;
17
+ }
18
+
19
+ class Config : ManualConfig
20
+ {
21
+ public Config ( )
22
+ {
23
+ Add ( Job . AllJits ) ;
24
+ Add ( Job . Dnx ) ;
25
+ Add ( Job . Default . With ( Mode . SingleRun ) . WithLaunchCount ( 1 ) . WithWarmupCount ( 1 ) . WithTargetCount ( 1 ) ) ;
26
+ Add ( Job . Default . With ( BenchmarkDotNet . Jobs . Framework . Host ) . With ( Runtime . Host ) . With ( Platform . Host ) ) ;
27
+ }
28
+ }
29
+ }
30
+ }
Original file line number Diff line number Diff line change 7
7
Rx-Main
8
8
Rx-PlatformServices
9
9
Bogus
10
- DiffPlex
10
+ DiffPlex
11
+ BenchmarkDotNet
You can’t perform that action at this time.
0 commit comments