Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion HdrHistogram.Benchmarking/HdrHistogram.Benchmarking.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net8.0;net7.0;net6.0;net5.0;net47;netcoreapp3.1;netcoreapp2.1.29</TargetFrameworks>
<TargetFrameworks>net8.0</TargetFrameworks>
</PropertyGroup>

<ItemGroup>
Expand Down
6 changes: 3 additions & 3 deletions spec/tech-standards/build-system.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ HdrHistogram.sln

### Benchmarking Project

Multi-targeted for performance comparison:
Targets the current LTS runtime only (developer tool, not a shipped library):

```xml
<TargetFrameworks>net8.0;net7.0;net6.0;net5.0;net47;netcoreapp3.1;netcoreapp2.1.29</TargetFrameworks>
<TargetFrameworks>net8.0</TargetFrameworks>
```

## Dependencies
Expand Down Expand Up @@ -224,7 +224,7 @@ dotnet run -c Release -- -f *Recording*
### Benchmark Configuration

BenchmarkDotNet is used with these targets:
- Multiple .NET versions for comparison
- `net8.0` (current LTS runtime)
- Windows diagnostics support
- Memory allocation tracking

Expand Down