Skip to content

Commit 6aab82e

Browse files
committed
doc: hanabi1224#469 replace dotnet -p tools for dotnet --project tools
1 parent fcf02c6 commit 6aab82e

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@ _The 1st step is to build source code from various of languages_
7272
```bash
7373
cd bench
7474
# To build a subset
75-
dotnet run -p tool -- --task build --langs lisp go --problems nbody helloworld --force-rebuild
75+
dotnet run --project tool -- --task build --langs lisp go --problems nbody helloworld --force-rebuild
7676
# To build all
77-
dotnet run -p tool -- --task build
77+
dotnet run --project tool -- --task build
7878
```
7979

8080
## Test
@@ -84,9 +84,9 @@ _The 2nd step is to test built binaries to ensure the correctness of their imple
8484
```bash
8585
cd bench
8686
# To test a subset
87-
dotnet run -p tool -- --task test --langs lisp go --problems nbody helloworld
87+
dotnet run --project tool -- --task test --langs lisp go --problems nbody helloworld
8888
# To test all
89-
dotnet run -p tool -- --task test
89+
dotnet run --project tool -- --task test
9090
```
9191

9292
## Bench
@@ -96,16 +96,16 @@ _The 3rd step is to generate benchmarks_
9696
```bash
9797
cd bench
9898
# To bench a subset
99-
dotnet run -p tool -- --task bench --langs lisp go --problems nbody helloworld
99+
dotnet run --project tool -- --task bench --langs lisp go --problems nbody helloworld
100100
# To bench all
101-
dotnet run -p tool -- --task bench
101+
dotnet run --project tool -- --task bench
102102
```
103103

104104
_For usage_
105105

106106
```bash
107107
cd bench
108-
dotnet run -p tool -- -h
108+
dotnet run --project tool -- -h
109109

110110
BenchTool
111111
Main function

0 commit comments

Comments
 (0)