Skip to content

doc: #469 replace dotnet -p tools for dotnet --project tools #470

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 24, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@ _The 1st step is to build source code from various of languages_
```bash
cd bench
# To build a subset
dotnet run -p tool -- --task build --langs lisp go --problems nbody helloworld --force-rebuild
dotnet run --project tool -- --task build --langs lisp go --problems nbody helloworld --force-rebuild
# To build all
dotnet run -p tool -- --task build
dotnet run --project tool -- --task build
```

## Test
Expand All @@ -84,9 +84,9 @@ _The 2nd step is to test built binaries to ensure the correctness of their imple
```bash
cd bench
# To test a subset
dotnet run -p tool -- --task test --langs lisp go --problems nbody helloworld
dotnet run --project tool -- --task test --langs lisp go --problems nbody helloworld
# To test all
dotnet run -p tool -- --task test
dotnet run --project tool -- --task test
```

## Bench
Expand All @@ -96,16 +96,16 @@ _The 3rd step is to generate benchmarks_
```bash
cd bench
# To bench a subset
dotnet run -p tool -- --task bench --langs lisp go --problems nbody helloworld
dotnet run --project tool -- --task bench --langs lisp go --problems nbody helloworld
# To bench all
dotnet run -p tool -- --task bench
dotnet run --project tool -- --task bench
```

_For usage_

```bash
cd bench
dotnet run -p tool -- -h
dotnet run --project tool -- -h

BenchTool
Main function
Expand Down
Loading