Skip to content

Commit 713d807

Browse files
committed
Added launchSettings.json to benchmarks project
1 parent 4cab5b4 commit 713d807

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

tests/FSharp.Data.GraphQL.Benchmarks/FSharp.Data.GraphQL.Benchmarks.fsproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
@@ -17,6 +17,7 @@
1717
</ItemGroup>
1818

1919
<ItemGroup>
20+
<None Include="Properties\launchSettings.json" />
2021
<Compile Include="Prolog.fs" />
2122
<Compile Include="Schema.fs" />
2223
<Compile Include="AsyncSchema.fs" />
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"profiles": {
3+
"AsyncVal": {
4+
"commandName": "Project",
5+
"commandLineArgs": "--filter *AsyncValBenchmark*"
6+
},
7+
"Simple execution": {
8+
"commandName": "Project",
9+
"commandLineArgs": "--filter *SimpleExecutionBenchmark*"
10+
},
11+
"Simple execution with middlewares": {
12+
"commandName": "Project",
13+
"commandLineArgs": "--filter *SimpleExecutionWithMiddlewaresBenchmark*"
14+
},
15+
"Parsing": {
16+
"commandName": "Project",
17+
"commandLineArgs": "--filter *ParsingBenchmark*"
18+
}
19+
}
20+
}

0 commit comments

Comments
 (0)