Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
f2156a8
refactor: migrate command line parsing to System.CommandLine
abdulrahmanhossam Feb 19, 2026
63a0432
apply code review: remove commented out code
abdulrahmanhossam Feb 19, 2026
da925e0
apply code review: port default values to System.CommandLine options
abdulrahmanhossam Feb 19, 2026
66caf25
fix: restore legacy option aliases, help texts, and fix --help invoca…
abdulrahmanhossam Feb 19, 2026
bf96210
fix: set OutliersOption default to RemoveUpper and remove obsolete Wa…
abdulrahmanhossam Feb 19, 2026
152ecc8
fix: add missing options and fix DashDash behavior
abdulrahmanhossam Feb 20, 2026
cba362d
style: apply review nits, fix help ordering, and support --version
abdulrahmanhossam Feb 20, 2026
110ac8f
feat: implement argument normalization and serialization for command …
abdulrahmanhossam Feb 20, 2026
cf09e3e
fix: enable multiple args per token, handle unmatched tokens as error…
abdulrahmanhossam Feb 20, 2026
9d0d233
feat: add support for extra command line arguments and improve error …
abdulrahmanhossam Feb 21, 2026
26e4348
feat: add duplicate option detection and error handling for command l…
abdulrahmanhossam Feb 21, 2026
5e23e87
feat: enhance error reporting for unknown command line options
abdulrahmanhossam Feb 21, 2026
8ff8652
feat: add implicit filters argument and refactor command line options…
abdulrahmanhossam Feb 22, 2026
30e73d4
refactor: remove implicit filters argument and handle unmatched token…
abdulrahmanhossam Feb 22, 2026
f4f3b32
refactor: simplify RootCommand initialization and enhance command lin…
abdulrahmanhossam Feb 22, 2026
e093c65
refactor: streamline CultureInfoHelper class and improve scope manage…
abdulrahmanhossam Feb 22, 2026
5e5be17
feat: enhance help and version output logging in ConfigParser
abdulrahmanhossam Feb 22, 2026
efa11f1
Merge branch 'master' into feature/issue-1016-system-commandline
abdulrahmanhossam Feb 23, 2026
71e6909
Merge branch 'master' into feature/issue-1016-system-commandline
abdulrahmanhossam Feb 27, 2026
fa51421
Fix build errors: Migrate newly merged Wasm options to System.Command…
abdulrahmanhossam Mar 1, 2026
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
2 changes: 1 addition & 1 deletion src/BenchmarkDotNet/BenchmarkDotNet.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<None Include="BenchmarkDotNet.targets" Pack="true" PackagePath="buildTransitive" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="System.CommandLine" Version="2.0.0" />
<PackageReference Include="Gee.External.Capstone" Version="2.3.0" />
<PackageReference Include="Iced" Version="1.21.0" />
<PackageReference Include="Microsoft.Diagnostics.Runtime" Version="3.1.525101" />
Expand Down
Loading