I have a dotnet core project without a .sln file. I had added a benchmark test using nuget package benchmarkdotnet. But the performance result is giving error unable to find .sln file. Is there any alternative to run the benchmark without generation of .sln file. Any help is appreciated. Thanks.
Asked
Active
Viewed 422 times
0
-
Why don't you want a .sln file? – MindSwipe Apr 01 '19 at 06:12
1 Answers
0
You probably try to use BenchmarkDotNet packet for dotnet, not dotnet core - so for different runtime environment. Please remove reference (or dependency) from project and try to install from nuget by typing
Install-Package BenchmarkDotNet.Core

piatkosia
- 114
- 2
- 4