From 264eefa47657471c87e5ca503a613907d67ef8c8 Mon Sep 17 00:00:00 2001 From: Sam Royal <20678198+royal@users.noreply.github.com> Date: Thu, 17 Dec 2020 14:14:14 +0000 Subject: [PATCH] Update Readme.md Fix path to Dapper.Tests.Performance --- Readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Readme.md b/Readme.md index 4f48ce904..9779556e3 100644 --- a/Readme.md +++ b/Readme.md @@ -114,7 +114,7 @@ Performance A key feature of Dapper is performance. The following metrics show how long it takes to execute a `SELECT` statement against a DB (in various config, each labeled) and map the data returned to objects. -The benchmarks can be found in [Dapper.Tests.Performance](https://github.com/StackExchange/Dapper/tree/main/Dapper.Tests.Performance) (contributions welcome!) and can be run via: +The benchmarks can be found in [Dapper.Tests.Performance](https://github.com/StackExchange/Dapper/tree/main/benchmarks/Dapper.Tests.Performance) (contributions welcome!) and can be run via: ```bash dotnet run -p .\benchmarks\Dapper.Tests.Performance\ -c Release -f netcoreapp3.1 -- -f * --join ```