From bd85873a3ceab8ef243d5a87affc4ff363882b3f Mon Sep 17 00:00:00 2001 From: Stuart Turner Date: Mon, 14 Apr 2025 15:30:37 -0500 Subject: [PATCH] Update dependencies --- Directory.Packages.props | 67 +++++++++++---------- benchmarks/Benchmark.Behaviors/Benchmark.cs | 2 +- 2 files changed, 35 insertions(+), 34 deletions(-) diff --git a/Directory.Packages.props b/Directory.Packages.props index a1b5e766..502402d4 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -1,42 +1,43 @@ - true + true - + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + - + - + diff --git a/benchmarks/Benchmark.Behaviors/Benchmark.cs b/benchmarks/Benchmark.Behaviors/Benchmark.cs index 01a432d2..2d9a1f3f 100644 --- a/benchmarks/Benchmark.Behaviors/Benchmark.cs +++ b/benchmarks/Benchmark.Behaviors/Benchmark.cs @@ -65,7 +65,7 @@ async Task MediatR.IPipelineBehavior.Handle( CancellationToken cancellationToken) { var sw = Stopwatch.StartNew(); - var response = await next(); + var response = await next(cancellationToken); Elapsed = sw.Elapsed; return response; }