FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Handlebars.Net/source/Handlebars.Benchmark/Program.cs at master · Handlebars-Net/Handlebars.Net · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
Handlebars-Net
/
Handlebars.Net
Public
Notifications
You must be signed in to change notification settings
Fork
242
Star
1.5k
Code
Issues
6
Pull requests
1
Discussions
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
Handlebars.Net
/
source
/
Handlebars.Benchmark
/
Program.cs
Copy path
More file actions
More file actions
Latest commit
History
History
History
21 lines (17 loc) · 553 Bytes
Breadcrumbs
Handlebars.Net
/
source
/
Handlebars.Benchmark
/
Program.cs
Copy path
File metadata and controls
21 lines (17 loc) · 553 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using
BenchmarkDotNet
.
Configs
;
using
BenchmarkDotNet
.
Jobs
;
using
BenchmarkDotNet
.
Running
;
namespace
HandlebarsNet
.
Benchmark
{
static
class
Program
{
public
static
void
Main
(
string
[
]
args
)
{
var
job
=
Job
.
MediumRun
.
WithLaunchCount
(
1
)
;
var
manualConfig
=
DefaultConfig
.
Instance
.
AddJob
(
job
)
;
manualConfig
.
AddLogicalGroupRules
(
BenchmarkLogicalGroupRule
.
ByMethod
)
;
BenchmarkSwitcher
.
FromAssembly
(
typeof
(
Program
)
.
Assembly
)
.
Run
(
args
,
manualConfig
)
;
}
}
}
Back
|
FazBrowse Home
|
New Git URL