We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fa044c commit de621a5Copy full SHA for de621a5
2 files changed
.github/workflows/dotnet.yml
@@ -105,6 +105,6 @@ jobs:
105
run: dotnet build --no-restore -f net8.0
106
- name: Execute
107
working-directory: ./SerializersBenchmark
108
- run: dotnet run -c Release -f net8.0 -- --runtimes net6.0 net8.0 --filter *
+ run: dotnet run -c Release -f net8.0 -- --runtimes net6.0 net8.0 --filter *Benchmarks*
109
110
#TODO process results
SerializersBenchmark/Program.cs
@@ -6,7 +6,7 @@ public class Program
6
{
7
static void Main(string[] args)
8
9
- //dotnet run -c Release -f net8.0 -- --runtimes net48 net6.0 net8.0 --filter *
+ //dotnet run -c Release -f net8.0 -- --runtimes net48 net6.0 net8.0 --filter *Benchmarks*
10
BenchmarkSwitcher.FromAssembly(typeof(Program).Assembly).Run(args);
11
}
12
0 commit comments