Skip to content

Commit 60fc296

Browse files
authored
Fix NETSDK1174 (#1699)
As per https://docs.microsoft.com/en-us/dotnet/core/tools/sdk-errors/netsdk1174 `-p` is deprecated in favor of `--project` This PR fixes the deprecation warning when running the benchmarks as currently described in the README.
1 parent 1725675 commit 60fc296

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ A key feature of Dapper is performance. The following metrics show how long it t
129129

130130
The benchmarks can be found in [Dapper.Tests.Performance](https://github.com/DapperLib/Dapper/tree/main/benchmarks/Dapper.Tests.Performance) (contributions welcome!) and can be run via:
131131
```bash
132-
dotnet run -p .\benchmarks\Dapper.Tests.Performance\ -c Release -f netcoreapp3.1 -- -f * --join
132+
dotnet run --project .\benchmarks\Dapper.Tests.Performance\ -c Release -f netcoreapp3.1 -- -f * --join
133133
```
134134
Output from the latest run is:
135135
``` ini

0 commit comments

Comments
 (0)