Skip to content

Commit 532f84a

Browse files
Update README
1 parent 19169a2 commit 532f84a

File tree

1 file changed

+12
-7
lines changed

1 file changed

+12
-7
lines changed

README.md

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ It's no harder than writing unit tests!
2929
Under the hood, it performs a lot of [magic](#Automation) that guarantees [reliable and precise](#Reliability) results.
3030
BenchmarkDotNet protects you from popular benchmarking mistakes and warns you if something is wrong with your benchmark design or obtained measurements.
3131
The results are presented in a [user-friendly](#Friendliness) form that highlights all the important facts about your experiment.
32-
The library is adopted by [3000+ projects](#who-use-benchmarkdotnet) including .NET Core and supported by the [.NET Foundation](https://dotnetfoundation.org).
32+
The library is adopted by [3500+ projects](#who-use-benchmarkdotnet) including .NET Core and supported by the [.NET Foundation](https://dotnetfoundation.org).
3333

3434
It's [easy](#Simplicity) to start writing benchmarks, check out an example
3535
(copy-pastable version is [here](https://benchmarkdotnet.org/articles/guides/getting-started.html)):
@@ -236,14 +236,14 @@ If you don't customize the summary view,
236236
## Who use BenchmarkDotNet?
237237

238238
Everyone!
239-
BenchmarkDotNet is already adopted by more than [3000+](https://github.com/dotnet/BenchmarkDotNet/network/dependents?package_id=UGFja2FnZS0xNTY3MzExMzE%3D) projects including
239+
BenchmarkDotNet is already adopted by more than [3500+](https://github.com/dotnet/BenchmarkDotNet/network/dependents?package_id=UGFja2FnZS0xNTY3MzExMzE%3D) projects including
240240
[dotnet/performance](https://github.com/dotnet/performance) (reference benchmarks for all .NET Runtimes),
241-
[CoreCLR](https://github.com/dotnet/coreclr/issues?utf8=✓&q=BenchmarkDotNet) (.NET Core Runtime),
242-
[CoreFX](https://github.com/dotnet/corefx/issues?utf8=✓&q=BenchmarkDotNet) (.NET Core Base Class Libraries),
241+
[dotnet/runtime](https://github.com/dotnet/runtime/issues?utf8=%E2%9C%93&q=BenchmarkDotNet) (.NET Core runtime and libraries),
243242
[Roslyn](https://github.com/dotnet/roslyn/search?q=BenchmarkDotNet&type=Issues&utf8=✓) (C# and Visual Basic compiler),
243+
[Mono](https://github.com/mono/mono/tree/master/sdks/wasm/bench-runner),
244244
[ASP.NET Core](https://github.com/aspnet/AspNetCore/tree/master/src/Servers/IIS/IIS/benchmarks),
245245
[ML.NET](https://github.com/dotnet/machinelearning/tree/master/test/Microsoft.ML.Benchmarks),
246-
[EntityFrameworkCore](https://github.com/aspnet/EntityFrameworkCore/tree/master/benchmark),
246+
[Entity Framework Core](https://github.com/dotnet/efcore/tree/master/benchmark),
247247
[SignalR](https://github.com/aspnet/SignalR/tree/master/benchmarks/Microsoft.AspNetCore.SignalR.Microbenchmarks),
248248
[F#](https://github.com/fsharp/fsharp/blob/master/tests/scripts/array-perf/array-perf.fs),
249249
[Orleans](https://github.com/dotnet/orleans/tree/master/test/Benchmarks),
@@ -261,11 +261,16 @@ BenchmarkDotNet is already adopted by more than [3000+](https://github.com/dotne
261261
[Autofac](https://github.com/autofac/Autofac/tree/develop/bench/Autofac.Benchmarks),
262262
[Npgsql](https://github.com/npgsql/npgsql/tree/dev/test/Npgsql.Benchmarks),
263263
[Avalonia](https://github.com/AvaloniaUI/Avalonia/tree/master/tests/Avalonia.Benchmarks),
264-
[ReactiveUI](https://github.com/reactiveui/ReactiveUI/tree/master/src/Benchmarks).
264+
[ReactiveUI](https://github.com/reactiveui/ReactiveUI/tree/master/src/Benchmarks),
265+
[SharpZipLib](https://github.com/icsharpcode/SharpZipLib/tree/master/benchmark/ICSharpCode.SharpZipLib.Benchmark),
266+
[LiteDB](https://github.com/mbdavid/LiteDB/tree/master/LiteDB.Benchmarks),
267+
[GraphQL for .NET](https://github.com/graphql-dotnet/graphql-dotnet/tree/master/src/GraphQL.Benchmarks),
268+
[MediatR](https://github.com/jbogard/MediatR/tree/master/test/MediatR.Benchmarks),
269+
[TensorFlow.NET](https://github.com/SciSharp/TensorFlow.NET/tree/master/src/TensorFlowNet.Benchmarks).
265270
On GitHub, you can find
266271
2500+ [issues](https://github.com/search?o=desc&q=BenchmarkDotNet+-repo:dotnet%2FBenchmarkDotNet&s=created&type=Issues&utf8=✓),
267272
1500+ [commits](https://github.com/search?o=desc&q=BenchmarkDotNet+-repo:dotnet%2FBenchmarkDotNet&s=committer-date&type=Commits&utf8=✓), and
268-
400,000+ [files](https://github.com/search?o=desc&q=BenchmarkDotNet+-repo:dotnet%2FBenchmarkDotNet&s=indexed&type=Code&utf8=✓)
273+
450,000+ [files](https://github.com/search?o=desc&q=BenchmarkDotNet+-repo:dotnet%2FBenchmarkDotNet&s=indexed&type=Code&utf8=✓)
269274
that involve BenchmarkDotNet.
270275

271276
## Learn more about benchmarking

0 commit comments

Comments
 (0)