Skip to content

[Build] Clean up SuppressTfmSupportBuildWarnings usage#8078

Merged
lucaspimentel merged 6 commits intomasterfrom
lpimentel/clean-up-SuppressTfmSupportBuildWarnings
Jan 16, 2026
Merged

[Build] Clean up SuppressTfmSupportBuildWarnings usage#8078
lucaspimentel merged 6 commits intomasterfrom
lpimentel/clean-up-SuppressTfmSupportBuildWarnings

Conversation

@lucaspimentel
Copy link
Member

@lucaspimentel lucaspimentel commented Jan 16, 2026

Summary of changes

  • ⭐ Add missing SuppressTfmSupportBuildWarnings MSBuild property to Datadog.Trace.BenchmarkDotNet.
  • Consolidate and clean up SuppressTfmSupportBuildWarnings usage across the repository to reduce redundancy and improve maintainability.

Reason for change

  • Building Datadog.Trace.BenchmarkDotNet resulted in several warning like:

    [NuGet package] doesn't support [TFM] and has not been tested with it.
    Consider upgrading your TargetFramework to net6.0 or later.
    You may also set <SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings> in the project file
    to ignore this warning and attempt to run in this unsupported configuration at your own risk. 
    
  • Many individual test projects had redundant SuppressTfmSupportBuildWarnings settings that were already inherited from parent Directory.Build.props files.

Implementation details

  • Added missing setting to BenchmarkDotNet: Added SuppressTfmSupportBuildWarnings to Datadog.Trace.BenchmarkDotNet.csproj which targets EOL frameworks but wasn't covered by Directory.Build.props
  • Removed redundant settings from 20 test projects: All individual .csproj files under tracer/test/ that had SuppressTfmSupportBuildWarnings already inherited from Directory.Build.props.
  • Fixed one case of duplicate SuppressTfmSupportBuildWarnings in the case file
  • Improved documentation: Enhanced comments in Directory.Build.props to clarify purpose of warning suppressions
  • Minor cleanup: Removed trailing whitespace and obsolete comments

Test coverage

Not required. The only visible change is the suppression of warnings when building Datadog.Trace.BenchmarkDotNet.

Other details

See https://andrewlock.net/stop-lying-about-netstandard-2-support

Projects now inherit SuppressTfmSupportBuildWarnings from:

  • tracer/test/Directory.Build.props (covers all test projects)
  • tracer/test/test-applications/Directory.Build.props (covers test applications)
  • tracer/test/test-applications/integrations/dependency-libs/Directory.Build.props (covers dependency libs)
  • Individual projects only when not covered by parent Directory.Build.props (e.g., Datadog.Trace.BenchmarkDotNet, Datadog.Trace.Coverage.collector)

@github-actions github-actions bot added the area:builds project files, build scripts, pipelines, versioning, releases, packages label Jan 16, 2026
@lucaspimentel lucaspimentel changed the title [build] clean up SuppressTfmSupportBuildWarnings Clean up SuppressTfmSupportBuildWarnings usage Jan 16, 2026
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<!-- NU* are workaround for Rider bug: https://youtrack.jetbrains.com/issue/RIDER-103207/Cannot-suppress-vulnerable-package-errors -->
<NoWarn>$(NoWarn);NU5100;NU5128;NU1901;NU1902;NU1903;NU1904</NoWarn>
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
Copy link
Member Author

@lucaspimentel lucaspimentel Jan 16, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is the only new one added in this PR. The rest is cleanup.

<PropertyGroup>
<!-- System.Diagnostics.DiagnosticSource doesn't support netcoreapp3.1-->
<!-- https://andrewlock.net/stop-lying-about-netstandard-2-support/ -->
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

twice in same file 😅

@@ -1,9 +1,4 @@
<Project>
<!--
This file intentionally left blank...
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This file is no longer blank...

<!-- NU* are workaround for Rider bug: https://youtrack.jetbrains.com/issue/RIDER-103207/Cannot-suppress-vulnerable-package-errors -->
<!-- PackageReference X will not be pruned. Consider removing this package from your dependencies, as it is likely unnecessary. -->
<NoWarn>SYSLIB0014;NU1901;NU1902;NU1903;NU1904;NU1510</NoWarn>
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

twice in same file 😅

@lucaspimentel lucaspimentel changed the title Clean up SuppressTfmSupportBuildWarnings usage [Build] Clean up SuppressTfmSupportBuildWarnings usage Jan 16, 2026
@lucaspimentel lucaspimentel marked this pull request as ready for review January 16, 2026 17:33
@lucaspimentel lucaspimentel requested review from a team as code owners January 16, 2026 17:33
@pr-commenter
Copy link

pr-commenter bot commented Jan 16, 2026

Benchmarks

Benchmark execution time: 2026-01-16 17:57:01

Comparing candidate commit 0564f1e in PR branch lpimentel/clean-up-SuppressTfmSupportBuildWarnings with baseline commit a598077 in branch master.

Found 11 performance improvements and 5 performance regressions! Performance is the same for 160 metrics, 16 unstable metrics.

scenario:Benchmarks.Trace.AgentWriterBenchmark.WriteAndFlushEnrichedTraces net6.0

  • 🟩 execution_time [-78.431ms; -78.320ms] or [-39.090%; -39.035%]

scenario:Benchmarks.Trace.Asm.AppSecEncoderBenchmark.EncodeLegacyArgs netcoreapp3.1

  • 🟥 execution_time [+19.186ms; +20.230ms] or [+10.505%; +11.077%]

scenario:Benchmarks.Trace.CIVisibilityProtocolWriterBenchmark.WriteAndFlushEnrichedTraces net6.0

  • 🟥 execution_time [+9.814ms; +13.482ms] or [+6.336%; +8.705%]

scenario:Benchmarks.Trace.CIVisibilityProtocolWriterBenchmark.WriteAndFlushEnrichedTraces netcoreapp3.1

  • 🟥 execution_time [+15.146ms; +19.899ms] or [+9.436%; +12.397%]
  • 🟥 throughput [-163.474op/s; -127.177op/s] or [-10.933%; -8.505%]

scenario:Benchmarks.Trace.CharSliceBenchmark.OptimizedCharSlice net6.0

  • 🟩 execution_time [-128.636µs; -122.377µs] or [-8.240%; -7.839%]
  • 🟩 throughput [+54.532op/s; +57.493op/s] or [+8.513%; +8.975%]

scenario:Benchmarks.Trace.CharSliceBenchmark.OptimizedCharSliceWithPool net6.0

  • 🟩 execution_time [-79.934µs; -75.133µs] or [-7.330%; -6.890%]
  • 🟩 throughput [+68.044op/s; +72.346op/s] or [+7.420%; +7.889%]

scenario:Benchmarks.Trace.DbCommandBenchmark.ExecuteNonQuery netcoreapp3.1

  • 🟩 throughput [+18802.863op/s; +26513.525op/s] or [+5.027%; +7.089%]

scenario:Benchmarks.Trace.GraphQLBenchmark.ExecuteAsync net472

  • 🟥 throughput [-26027.145op/s; -24978.676op/s] or [-6.460%; -6.200%]

scenario:Benchmarks.Trace.ILoggerBenchmark.EnrichedLog net6.0

  • 🟩 execution_time [-16.393ms; -10.929ms] or [-7.755%; -5.170%]

scenario:Benchmarks.Trace.Iast.StringAspectsBenchmark.StringConcatBenchmark netcoreapp3.1

  • 🟩 execution_time [-13.062µs; -8.701µs] or [-22.177%; -14.772%]
  • 🟩 throughput [+2934.071op/s; +4283.996op/s] or [+16.979%; +24.791%]

scenario:Benchmarks.Trace.NLogBenchmark.EnrichedLog net6.0

  • 🟩 execution_time [-17.754ms; -13.527ms] or [-8.260%; -6.293%]

scenario:Benchmarks.Trace.SpanBenchmark.StartFinishScope net6.0

  • 🟩 throughput [+77497.459op/s; +108164.283op/s] or [+7.679%; +10.718%]

@dd-trace-dotnet-ci-bot
Copy link

Execution-Time Benchmarks Report ⏱️

Execution-time results for samples comparing This PR (8078) and master.

✅ No regressions detected - check the details below

Full Metrics Comparison

FakeDbCommand

Metric Master (Mean ± 95% CI) Current (Mean ± 95% CI) Change Status
.NET Framework 4.8 - Baseline
duration68.35 ± (68.35 - 68.58) ms68.84 ± (69.03 - 69.43) ms+0.7%✅⬆️
.NET Framework 4.8 - Bailout
duration72.12 ± (71.98 - 72.22) ms73.60 ± (73.59 - 73.99) ms+2.1%✅⬆️
.NET Framework 4.8 - CallTarget+Inlining+NGEN
duration996.99 ± (1000.79 - 1009.02) ms1009.19 ± (1017.80 - 1028.99) ms+1.2%✅⬆️
.NET Core 3.1 - Baseline
process.internal_duration_ms21.94 ± (21.91 - 21.96) ms21.97 ± (21.94 - 22.00) ms+0.1%✅⬆️
process.time_to_main_ms78.55 ± (78.37 - 78.73) ms78.83 ± (78.70 - 78.96) ms+0.4%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed10.90 ± (10.89 - 10.90) MB10.91 ± (10.90 - 10.91) MB+0.1%✅⬆️
runtime.dotnet.threads.count12 ± (12 - 12)12 ± (12 - 12)+0.0%
.NET Core 3.1 - Bailout
process.internal_duration_ms21.91 ± (21.89 - 21.94) ms21.94 ± (21.91 - 21.97) ms+0.1%✅⬆️
process.time_to_main_ms79.82 ± (79.70 - 79.93) ms80.38 ± (80.23 - 80.53) ms+0.7%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed10.92 ± (10.92 - 10.93) MB10.95 ± (10.94 - 10.95) MB+0.2%✅⬆️
runtime.dotnet.threads.count13 ± (13 - 13)13 ± (13 - 13)+0.0%
.NET Core 3.1 - CallTarget+Inlining+NGEN
process.internal_duration_ms248.45 ± (245.12 - 251.78) ms254.69 ± (251.91 - 257.48) ms+2.5%✅⬆️
process.time_to_main_ms467.11 ± (466.56 - 467.66) ms470.83 ± (470.24 - 471.41) ms+0.8%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed48.36 ± (48.34 - 48.38) MB48.45 ± (48.43 - 48.47) MB+0.2%✅⬆️
runtime.dotnet.threads.count28 ± (28 - 28)28 ± (28 - 28)+0.0%✅⬆️
.NET 6 - Baseline
process.internal_duration_ms20.78 ± (20.75 - 20.81) ms20.68 ± (20.65 - 20.71) ms-0.5%
process.time_to_main_ms68.18 ± (68.07 - 68.29) ms68.42 ± (68.29 - 68.54) ms+0.3%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed10.60 ± (10.60 - 10.60) MB10.63 ± (10.63 - 10.64) MB+0.3%✅⬆️
runtime.dotnet.threads.count10 ± (10 - 10)10 ± (10 - 10)+0.0%
.NET 6 - Bailout
process.internal_duration_ms20.59 ± (20.57 - 20.61) ms20.70 ± (20.68 - 20.72) ms+0.5%✅⬆️
process.time_to_main_ms68.95 ± (68.90 - 69.00) ms69.39 ± (69.33 - 69.44) ms+0.6%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed10.66 ± (10.65 - 10.66) MB10.74 ± (10.73 - 10.74) MB+0.8%✅⬆️
runtime.dotnet.threads.count11 ± (11 - 11)11 ± (11 - 11)+0.0%
.NET 6 - CallTarget+Inlining+NGEN
process.internal_duration_ms250.94 ± (249.48 - 252.39) ms245.23 ± (242.66 - 247.80) ms-2.3%
process.time_to_main_ms445.20 ± (444.77 - 445.62) ms448.08 ± (447.52 - 448.64) ms+0.6%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed49.09 ± (49.07 - 49.12) MB49.12 ± (49.09 - 49.15) MB+0.1%✅⬆️
runtime.dotnet.threads.count28 ± (28 - 28)28 ± (28 - 28)+0.1%✅⬆️
.NET 8 - Baseline
process.internal_duration_ms18.73 ± (18.70 - 18.76) ms18.96 ± (18.94 - 18.99) ms+1.2%✅⬆️
process.time_to_main_ms67.02 ± (66.91 - 67.13) ms67.56 ± (67.44 - 67.68) ms+0.8%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed7.64 ± (7.64 - 7.65) MB7.69 ± (7.68 - 7.70) MB+0.6%✅⬆️
runtime.dotnet.threads.count10 ± (10 - 10)10 ± (10 - 10)+0.0%
.NET 8 - Bailout
process.internal_duration_ms18.78 ± (18.76 - 18.81) ms18.95 ± (18.93 - 18.98) ms+0.9%✅⬆️
process.time_to_main_ms68.12 ± (68.06 - 68.18) ms68.53 ± (68.47 - 68.59) ms+0.6%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed7.71 ± (7.70 - 7.72) MB7.72 ± (7.72 - 7.73) MB+0.2%✅⬆️
runtime.dotnet.threads.count11 ± (11 - 11)11 ± (11 - 11)+0.0%
.NET 8 - CallTarget+Inlining+NGEN
process.internal_duration_ms196.67 ± (194.14 - 199.21) ms179.09 ± (178.21 - 179.98) ms-8.9%
process.time_to_main_ms457.65 ± (452.86 - 462.44) ms430.22 ± (429.66 - 430.78) ms-6.0%
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed36.78 ± (36.74 - 36.82) MB36.63 ± (36.60 - 36.66) MB-0.4%
runtime.dotnet.threads.count27 ± (27 - 27)27 ± (27 - 27)-0.3%

HttpMessageHandler

Metric Master (Mean ± 95% CI) Current (Mean ± 95% CI) Change Status
.NET Framework 4.8 - Baseline
duration192.67 ± (192.67 - 193.51) ms194.20 ± (194.02 - 194.90) ms+0.8%✅⬆️
.NET Framework 4.8 - Bailout
duration196.50 ± (196.29 - 197.06) ms197.21 ± (197.03 - 197.73) ms+0.4%✅⬆️
.NET Framework 4.8 - CallTarget+Inlining+NGEN
duration1120.06 ± (1128.32 - 1138.04) ms1125.36 ± (1127.45 - 1136.62) ms+0.5%✅⬆️
.NET Core 3.1 - Baseline
process.internal_duration_ms187.78 ± (187.36 - 188.19) ms188.51 ± (188.08 - 188.94) ms+0.4%✅⬆️
process.time_to_main_ms80.92 ± (80.65 - 81.19) ms81.54 ± (81.31 - 81.77) ms+0.8%✅⬆️
runtime.dotnet.exceptions.count3 ± (3 - 3)3 ± (3 - 3)+0.0%
runtime.dotnet.mem.committed16.09 ± (16.07 - 16.11) MB16.14 ± (16.11 - 16.17) MB+0.3%✅⬆️
runtime.dotnet.threads.count20 ± (20 - 20)20 ± (20 - 20)+0.5%✅⬆️
.NET Core 3.1 - Bailout
process.internal_duration_ms187.22 ± (186.96 - 187.48) ms188.90 ± (188.44 - 189.37) ms+0.9%✅⬆️
process.time_to_main_ms82.16 ± (82.00 - 82.31) ms83.20 ± (82.96 - 83.45) ms+1.3%✅⬆️
runtime.dotnet.exceptions.count3 ± (3 - 3)3 ± (3 - 3)+0.0%
runtime.dotnet.mem.committed16.19 ± (16.16 - 16.22) MB16.16 ± (16.13 - 16.19) MB-0.2%
runtime.dotnet.threads.count21 ± (21 - 21)21 ± (21 - 21)+0.7%✅⬆️
.NET Core 3.1 - CallTarget+Inlining+NGEN
process.internal_duration_ms428.15 ± (425.15 - 431.15) ms425.49 ± (422.18 - 428.81) ms-0.6%
process.time_to_main_ms473.00 ± (472.29 - 473.71) ms477.59 ± (476.89 - 478.29) ms+1.0%✅⬆️
runtime.dotnet.exceptions.count3 ± (3 - 3)3 ± (3 - 3)+0.0%
runtime.dotnet.mem.committed58.81 ± (58.71 - 58.92) MB58.70 ± (58.59 - 58.81) MB-0.2%
runtime.dotnet.threads.count29 ± (29 - 30)29 ± (29 - 29)-0.0%
.NET 6 - Baseline
process.internal_duration_ms192.21 ± (191.80 - 192.63) ms194.85 ± (194.41 - 195.30) ms+1.4%✅⬆️
process.time_to_main_ms70.23 ± (70.03 - 70.42) ms70.79 ± (70.60 - 70.97) ms+0.8%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed16.20 ± (16.09 - 16.32) MB16.36 ± (16.32 - 16.41) MB+1.0%✅⬆️
runtime.dotnet.threads.count19 ± (19 - 19)19 ± (19 - 19)+1.3%✅⬆️
.NET 6 - Bailout
process.internal_duration_ms190.80 ± (190.52 - 191.08) ms195.00 ± (194.52 - 195.48) ms+2.2%✅⬆️
process.time_to_main_ms70.99 ± (70.85 - 71.13) ms71.93 ± (71.73 - 72.13) ms+1.3%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed16.11 ± (15.96 - 16.25) MB16.25 ± (16.13 - 16.37) MB+0.9%✅⬆️
runtime.dotnet.threads.count19 ± (19 - 19)20 ± (20 - 20)+3.6%✅⬆️
.NET 6 - CallTarget+Inlining+NGEN
process.internal_duration_ms442.35 ± (439.15 - 445.55) ms435.54 ± (430.97 - 440.11) ms-1.5%
process.time_to_main_ms451.52 ± (450.95 - 452.10) ms453.66 ± (452.93 - 454.38) ms+0.5%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed58.95 ± (58.82 - 59.09) MB59.04 ± (58.87 - 59.20) MB+0.1%✅⬆️
runtime.dotnet.threads.count29 ± (29 - 29)29 ± (29 - 29)-0.0%
.NET 8 - Baseline
process.internal_duration_ms190.62 ± (190.22 - 191.02) ms191.02 ± (190.61 - 191.43) ms+0.2%✅⬆️
process.time_to_main_ms69.97 ± (69.74 - 70.21) ms70.53 ± (70.34 - 70.72) ms+0.8%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed11.77 ± (11.75 - 11.80) MB11.74 ± (11.71 - 11.77) MB-0.3%
runtime.dotnet.threads.count18 ± (18 - 18)18 ± (18 - 18)-0.2%
.NET 8 - Bailout
process.internal_duration_ms189.80 ± (189.45 - 190.14) ms190.24 ± (189.89 - 190.59) ms+0.2%✅⬆️
process.time_to_main_ms71.08 ± (70.97 - 71.20) ms71.59 ± (71.40 - 71.77) ms+0.7%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed11.84 ± (11.82 - 11.87) MB11.81 ± (11.79 - 11.84) MB-0.3%
runtime.dotnet.threads.count19 ± (19 - 19)19 ± (19 - 19)+0.3%✅⬆️
.NET 8 - CallTarget+Inlining+NGEN
process.internal_duration_ms367.09 ± (365.66 - 368.51) ms370.44 ± (369.25 - 371.62) ms+0.9%✅⬆️
process.time_to_main_ms434.83 ± (434.15 - 435.50) ms440.28 ± (439.41 - 441.15) ms+1.3%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed48.11 ± (48.07 - 48.14) MB48.25 ± (48.22 - 48.28) MB+0.3%✅⬆️
runtime.dotnet.threads.count28 ± (28 - 29)29 ± (29 - 29)+1.4%✅⬆️
Comparison explanation

Execution-time benchmarks measure the whole time it takes to execute a program, and are intended to measure the one-off costs. Cases where the execution time results for the PR are worse than latest master results are highlighted in **red**. The following thresholds were used for comparing the execution times:

  • Welch test with statistical test for significance of 5%
  • Only results indicating a difference greater than 5% and 5 ms are considered.

Note that these results are based on a single point-in-time result for each branch. For full results, see the dashboard.

Graphs show the p99 interval based on the mean and StdDev of the test run, as well as the mean value of the run (shown as a diamond below the graph).

Duration charts
FakeDbCommand (.NET Framework 4.8)
gantt
    title Execution time (ms) FakeDbCommand (.NET Framework 4.8)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8078) - mean (69ms)  : 66, 72
    master - mean (68ms)  : 67, 70

    section Bailout
    This PR (8078) - mean (74ms)  : 71, 77
    master - mean (72ms)  : 71, 73

    section CallTarget+Inlining+NGEN
    This PR (8078) - mean (1,023ms)  : 942, 1105
    master - mean (1,005ms)  : 947, 1063

Loading
FakeDbCommand (.NET Core 3.1)
gantt
    title Execution time (ms) FakeDbCommand (.NET Core 3.1)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8078) - mean (106ms)  : 104, 108
    master - mean (106ms)  : 104, 108

    section Bailout
    This PR (8078) - mean (107ms)  : 105, 110
    master - mean (107ms)  : 105, 108

    section CallTarget+Inlining+NGEN
    This PR (8078) - mean (750ms)  : 703, 797
    master - mean (738ms)  : 687, 789

Loading
FakeDbCommand (.NET 6)
gantt
    title Execution time (ms) FakeDbCommand (.NET 6)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8078) - mean (94ms)  : 92, 96
    master - mean (94ms)  : 91, 96

    section Bailout
    This PR (8078) - mean (95ms)  : 94, 96
    master - mean (94ms)  : 93, 95

    section CallTarget+Inlining+NGEN
    This PR (8078) - mean (721ms)  : 677, 764
    master - mean (719ms)  : 687, 751

Loading
FakeDbCommand (.NET 8)
gantt
    title Execution time (ms) FakeDbCommand (.NET 8)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8078) - mean (93ms)  : 90, 95
    master - mean (92ms)  : 90, 94

    section Bailout
    This PR (8078) - mean (93ms)  : 92, 94
    master - mean (93ms)  : 92, 94

    section CallTarget+Inlining+NGEN
    This PR (8078) - mean (638ms)  : 619, 657
    master - mean (684ms)  : 576, 791

Loading
HttpMessageHandler (.NET Framework 4.8)
gantt
    title Execution time (ms) HttpMessageHandler (.NET Framework 4.8)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8078) - mean (194ms)  : 190, 199
    master - mean (193ms)  : 189, 197

    section Bailout
    This PR (8078) - mean (197ms)  : 194, 201
    master - mean (197ms)  : 193, 200

    section CallTarget+Inlining+NGEN
    This PR (8078) - mean (1,132ms)  : 1066, 1198
    master - mean (1,133ms)  : 1064, 1203

Loading
HttpMessageHandler (.NET Core 3.1)
gantt
    title Execution time (ms) HttpMessageHandler (.NET Core 3.1)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8078) - mean (279ms)  : 273, 285
    master - mean (278ms)  : 270, 285

    section Bailout
    This PR (8078) - mean (280ms)  : 273, 288
    master - mean (278ms)  : 275, 281

    section CallTarget+Inlining+NGEN
    This PR (8078) - mean (936ms)  : 891, 980
    master - mean (935ms)  : 889, 981

Loading
HttpMessageHandler (.NET 6)
gantt
    title Execution time (ms) HttpMessageHandler (.NET 6)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8078) - mean (274ms)  : 266, 282
    master - mean (271ms)  : 265, 276

    section Bailout
    This PR (8078) - mean (275ms)  : 268, 282
    master - mean (270ms)  : 266, 273

    section CallTarget+Inlining+NGEN
    This PR (8078) - mean (918ms)  : 856, 980
    master - mean (922ms)  : 874, 969

Loading
HttpMessageHandler (.NET 8)
gantt
    title Execution time (ms) HttpMessageHandler (.NET 8)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8078) - mean (272ms)  : 267, 277
    master - mean (271ms)  : 265, 276

    section Bailout
    This PR (8078) - mean (271ms)  : 266, 277
    master - mean (270ms)  : 266, 275

    section CallTarget+Inlining+NGEN
    This PR (8078) - mean (843ms)  : 798, 887
    master - mean (833ms)  : 816, 851

Loading

@lucaspimentel lucaspimentel merged commit 0e23a10 into master Jan 16, 2026
152 checks passed
@lucaspimentel lucaspimentel deleted the lpimentel/clean-up-SuppressTfmSupportBuildWarnings branch January 16, 2026 18:57
@github-actions github-actions bot added this to the vNext-v3 milestone Jan 16, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

area:builds project files, build scripts, pipelines, versioning, releases, packages

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants