BenchmarkDotNet
BenchmarkDotNet copied to clipboard
Powerful .NET library for benchmarking
simplify template.json
after ``` dotnet new -i BenchmarkDotNet.Templates::0.13.1 ``` JetBrains Rider create broken project because `TargetFramework` contains `v0.0` I've created [issue](https://youtrack.jetbrains.com/issue/RIDER-72787) for Rider. But also we can fix template – for example...
Based on your recommendation in #1872, I have just installed the nightly build `v0.10.3.13-nightly`, and I now get the following build errors where I am trying to use BDN attributes...
Templates for `dotnet new` were added for #1028 but don't use any passed arguments for the runner. With the global tool deprecated, this world provide a convenient way of customizing...
Version: 0.13.1 When a parameterised input value has trailing newline characters, they are rendered in the summary table on the console, breaking the table. ```c# public class Repro { [ParamsSource(nameof(Data))]...
I am using DotNet Benchmark and I can get the memory usage information as in the table below. But I need to access how much **CPU usage** is in the...
I cannot reproduce it properly, it may or may not occur. Here's the stacktrace: ``` Unhandled exception. System.InvalidOperationException: There is an error in XML document (0, 0). ---> System.Xml.XmlException: Root...
Hi, First, thank you for your effort. BenchmarkDotNet is a great tool. **Issue:** I have encountered an interesting exception. When you set `... AddHardwareCounters(HardwareCounter.NotSet) ...` on configs, .net throws `System.ArgumentNullException:...
I would like to add columns to the benchmarks for the average CPU and RAM usage during the test ([I'm benchmarking network libraries](https://github.com/JohannesDeml/NetworkBenchmarkDotNet)). I tried using `AddDiagnoser(new EventPipeProfiler(EventPipeProfile.CpuSampling));`, but due...
I have a project which has a dependency on Azure functions, class libraries and private NuGet packages. I am trying to benchmark a method inside a service class. But I...