From 753e953b5878d04c3cdcf72f129bc08cbbd45e58 Mon Sep 17 00:00:00 2001 From: Felipe Segade Date: Sat, 9 May 2026 11:45:57 +0200 Subject: [PATCH 1/6] Add support for .NET 10 --- .../AspireModularSample.AppHost.csproj | 2 +- .../AspireModularSample.Modules.csproj | 2 +- .../AspireModularSample.ServiceA.csproj | 2 +- .../AspireModularSample.ServiceB.csproj | 2 +- src/Benchmark/Benchmark.csproj | 2 +- src/DispatchR.Abstractions/DispatchR.Abstractions.csproj | 2 +- src/DispatchR/DispatchR.csproj | 5 ++++- src/Sample/Sample.csproj | 2 +- .../DispatchR.IntegrationTest.csproj | 2 +- tests/DispatchR.TestCommon/DispatchR.TestCommon.csproj | 2 +- tests/DispatchR.UnitTest/DispatchR.UnitTest.csproj | 2 +- 11 files changed, 14 insertions(+), 11 deletions(-) diff --git a/src/AspireModularExample/AspireModularSample.AppHost/AspireModularSample.AppHost.csproj b/src/AspireModularExample/AspireModularSample.AppHost/AspireModularSample.AppHost.csproj index ba54d1e..808577f 100644 --- a/src/AspireModularExample/AspireModularSample.AppHost/AspireModularSample.AppHost.csproj +++ b/src/AspireModularExample/AspireModularSample.AppHost/AspireModularSample.AppHost.csproj @@ -4,7 +4,7 @@ Exe - net9.0 + net10.0 enable enable true diff --git a/src/AspireModularExample/AspireModularSample.Modules/AspireModularSample.Modules.csproj b/src/AspireModularExample/AspireModularSample.Modules/AspireModularSample.Modules.csproj index 111bf03..36e7c50 100644 --- a/src/AspireModularExample/AspireModularSample.Modules/AspireModularSample.Modules.csproj +++ b/src/AspireModularExample/AspireModularSample.Modules/AspireModularSample.Modules.csproj @@ -1,7 +1,7 @@  - net9.0 + net10.0 enable enable diff --git a/src/AspireModularExample/AspireModularSample.ServiceA/AspireModularSample.ServiceA.csproj b/src/AspireModularExample/AspireModularSample.ServiceA/AspireModularSample.ServiceA.csproj index a64b164..bd29c1a 100644 --- a/src/AspireModularExample/AspireModularSample.ServiceA/AspireModularSample.ServiceA.csproj +++ b/src/AspireModularExample/AspireModularSample.ServiceA/AspireModularSample.ServiceA.csproj @@ -10,7 +10,7 @@ - net9.0 + net10.0 enable enable diff --git a/src/AspireModularExample/AspireModularSample.ServiceB/AspireModularSample.ServiceB.csproj b/src/AspireModularExample/AspireModularSample.ServiceB/AspireModularSample.ServiceB.csproj index a64b164..bd29c1a 100644 --- a/src/AspireModularExample/AspireModularSample.ServiceB/AspireModularSample.ServiceB.csproj +++ b/src/AspireModularExample/AspireModularSample.ServiceB/AspireModularSample.ServiceB.csproj @@ -10,7 +10,7 @@ - net9.0 + net10.0 enable enable diff --git a/src/Benchmark/Benchmark.csproj b/src/Benchmark/Benchmark.csproj index 8524f39..70290c9 100644 --- a/src/Benchmark/Benchmark.csproj +++ b/src/Benchmark/Benchmark.csproj @@ -1,7 +1,7 @@ - net9.0 + net10.0 enable true enable diff --git a/src/DispatchR.Abstractions/DispatchR.Abstractions.csproj b/src/DispatchR.Abstractions/DispatchR.Abstractions.csproj index bc5afdb..9ec8a09 100644 --- a/src/DispatchR.Abstractions/DispatchR.Abstractions.csproj +++ b/src/DispatchR.Abstractions/DispatchR.Abstractions.csproj @@ -1,7 +1,7 @@  - net9.0;net8.0; + net8.0;net9.0;net10.0 enable enable icon-mini.png diff --git a/src/DispatchR/DispatchR.csproj b/src/DispatchR/DispatchR.csproj index 03be037..a9d7ee1 100644 --- a/src/DispatchR/DispatchR.csproj +++ b/src/DispatchR/DispatchR.csproj @@ -1,6 +1,6 @@  - net8.0;net9.0 + net8.0;net9.0;net10.0 enable enable README.md @@ -21,6 +21,9 @@ + diff --git a/src/Sample/Sample.csproj b/src/Sample/Sample.csproj index 46fab57..e5f581c 100644 --- a/src/Sample/Sample.csproj +++ b/src/Sample/Sample.csproj @@ -1,7 +1,7 @@  - net9.0 + net10.0 enable enable diff --git a/tests/DispatchR.IntegrationTest/DispatchR.IntegrationTest.csproj b/tests/DispatchR.IntegrationTest/DispatchR.IntegrationTest.csproj index 4594ed9..11ac8f1 100644 --- a/tests/DispatchR.IntegrationTest/DispatchR.IntegrationTest.csproj +++ b/tests/DispatchR.IntegrationTest/DispatchR.IntegrationTest.csproj @@ -1,7 +1,7 @@  - net9.0 + net10.0 enable enable false diff --git a/tests/DispatchR.TestCommon/DispatchR.TestCommon.csproj b/tests/DispatchR.TestCommon/DispatchR.TestCommon.csproj index 8e1adc7..78ab4eb 100644 --- a/tests/DispatchR.TestCommon/DispatchR.TestCommon.csproj +++ b/tests/DispatchR.TestCommon/DispatchR.TestCommon.csproj @@ -1,7 +1,7 @@  - net9.0 + net10.0 enable enable diff --git a/tests/DispatchR.UnitTest/DispatchR.UnitTest.csproj b/tests/DispatchR.UnitTest/DispatchR.UnitTest.csproj index 69524d7..a96f8e0 100644 --- a/tests/DispatchR.UnitTest/DispatchR.UnitTest.csproj +++ b/tests/DispatchR.UnitTest/DispatchR.UnitTest.csproj @@ -1,7 +1,7 @@  - net9.0 + net10.0 enable enable false From ab1e551a1ab9ac52babe6b6540b5f0aa6cd9d7fa Mon Sep 17 00:00:00 2001 From: Felipe Segade Date: Sat, 9 May 2026 12:05:35 +0200 Subject: [PATCH 2/6] Update GitHub workflow --- .github/workflows/build-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index e1e85d2..c7918fb 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -24,7 +24,7 @@ jobs: - name: Setup dotnet uses: actions/setup-dotnet@v4 with: - dotnet-version: '9.x' + dotnet-version: '10.x' - name: Install Coverlet run: dotnet tool install --global coverlet.console From 0e59e70626180d06a56d5697a9e1c4862b572d92 Mon Sep 17 00:00:00 2001 From: Felipe Segade Date: Sat, 9 May 2026 13:35:51 +0200 Subject: [PATCH 3/6] =?UTF-8?q?=F0=9F=93=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Benchmark/Benchmark.csproj | 8 ++++---- src/Benchmark/Notification/NotificationBenchmarks.cs | 2 +- src/Benchmark/SendRequest/MediatRVsDispatchRBenchmark.cs | 1 + .../MediatRVsDispatchRWithPipelineBenchmark.cs | 2 +- .../StreamRequest/StreamMediatRVsDispatchRBenchmark.cs | 1 + .../StreamMediatRVsDispatchRWithPipelineBenchmark.cs | 2 +- src/Benchmark/StreamRequest/StreamMediatSGCommands.cs | 3 +-- .../DispatchR/StreamRequest/GenericPipelineBehavior.cs | 5 +++-- src/Sample/Sample.csproj | 2 +- .../DispatchR.IntegrationTest.csproj | 9 ++++++--- .../Fixtures/StreamRequest/GenericPipelineBehavior.cs | 3 ++- tests/DispatchR.UnitTest/DispatchR.UnitTest.csproj | 4 ++-- 12 files changed, 24 insertions(+), 18 deletions(-) diff --git a/src/Benchmark/Benchmark.csproj b/src/Benchmark/Benchmark.csproj index 70290c9..8c3bd88 100644 --- a/src/Benchmark/Benchmark.csproj +++ b/src/Benchmark/Benchmark.csproj @@ -8,17 +8,17 @@ - + - + - - + + all runtime; build; native; contentfiles; analyzers diff --git a/src/Benchmark/Notification/NotificationBenchmarks.cs b/src/Benchmark/Notification/NotificationBenchmarks.cs index c429d8d..77f51d1 100644 --- a/src/Benchmark/Notification/NotificationBenchmarks.cs +++ b/src/Benchmark/Notification/NotificationBenchmarks.cs @@ -3,7 +3,6 @@ using Benchmark.Notification.SingleHandler; using BenchmarkDotNet.Attributes; using BenchmarkDotNet.Order; -using DispatchR; using DispatchR.Extensions; namespace Benchmark.Notification; @@ -43,6 +42,7 @@ public enum ScenarioType public void Setup() { var services = new ServiceCollection(); + services.AddLogging(); services.AddMediator(opts => { opts.ServiceLifetime = ServiceLifetime.Scoped; diff --git a/src/Benchmark/SendRequest/MediatRVsDispatchRBenchmark.cs b/src/Benchmark/SendRequest/MediatRVsDispatchRBenchmark.cs index 128d313..62ad5b6 100644 --- a/src/Benchmark/SendRequest/MediatRVsDispatchRBenchmark.cs +++ b/src/Benchmark/SendRequest/MediatRVsDispatchRBenchmark.cs @@ -31,6 +31,7 @@ public class MediatRVsDispatchBenchmark public void Setup() { var withoutPipelineServices = new ServiceCollection(); + withoutPipelineServices.AddLogging(); withoutPipelineServices.AddMediatR(cfg => { cfg.Lifetime = ServiceLifetime.Scoped; diff --git a/src/Benchmark/SendRequest/MediatRVsDispatchRWithPipelineBenchmark.cs b/src/Benchmark/SendRequest/MediatRVsDispatchRWithPipelineBenchmark.cs index 31c3f05..bf1f07f 100644 --- a/src/Benchmark/SendRequest/MediatRVsDispatchRWithPipelineBenchmark.cs +++ b/src/Benchmark/SendRequest/MediatRVsDispatchRWithPipelineBenchmark.cs @@ -32,7 +32,7 @@ public class MediatRVsDispatchWithPipelineRBenchmark public void Setup() { var withPipelineServices = new ServiceCollection(); - + withPipelineServices.AddLogging(); withPipelineServices.AddMediatR(cfg => { cfg.Lifetime = ServiceLifetime.Scoped; diff --git a/src/Benchmark/StreamRequest/StreamMediatRVsDispatchRBenchmark.cs b/src/Benchmark/StreamRequest/StreamMediatRVsDispatchRBenchmark.cs index 3fe039e..c885fb9 100644 --- a/src/Benchmark/StreamRequest/StreamMediatRVsDispatchRBenchmark.cs +++ b/src/Benchmark/StreamRequest/StreamMediatRVsDispatchRBenchmark.cs @@ -31,6 +31,7 @@ public class StreamMediatRVsDispatchBenchmark public void Setup() { var withoutPipelineServices = new ServiceCollection(); + withoutPipelineServices.AddLogging(); withoutPipelineServices.AddMediatR(cfg => { cfg.Lifetime = ServiceLifetime.Scoped; diff --git a/src/Benchmark/StreamRequest/StreamMediatRVsDispatchRWithPipelineBenchmark.cs b/src/Benchmark/StreamRequest/StreamMediatRVsDispatchRWithPipelineBenchmark.cs index 8d01f8b..a92ee73 100644 --- a/src/Benchmark/StreamRequest/StreamMediatRVsDispatchRWithPipelineBenchmark.cs +++ b/src/Benchmark/StreamRequest/StreamMediatRVsDispatchRWithPipelineBenchmark.cs @@ -32,7 +32,7 @@ public class StreamMediatRVsDispatchWithPipelineRBenchmark public void Setup() { var withPipelineServices = new ServiceCollection(); - + withPipelineServices.AddLogging(); withPipelineServices.AddMediatR(cfg => { cfg.Lifetime = ServiceLifetime.Scoped; diff --git a/src/Benchmark/StreamRequest/StreamMediatSGCommands.cs b/src/Benchmark/StreamRequest/StreamMediatSGCommands.cs index f7e411a..231bf45 100644 --- a/src/Benchmark/StreamRequest/StreamMediatSGCommands.cs +++ b/src/Benchmark/StreamRequest/StreamMediatSGCommands.cs @@ -17,8 +17,7 @@ public async IAsyncEnumerable Handle(PingStreamMediatSg request, [Enumerato public sealed class LoggingBehaviorMediatSg : IStreamPipelineBehavior { - // version 2.x - public async IAsyncEnumerable Handle(PingStreamMediatSg message, [EnumeratorCancellation] CancellationToken cancellationToken, StreamHandlerDelegate next) + public async IAsyncEnumerable Handle(PingStreamMediatSg message, StreamHandlerDelegate next, [EnumeratorCancellation] CancellationToken cancellationToken) { await foreach (var response in next(message, cancellationToken).ConfigureAwait(false)) { diff --git a/src/Sample/DispatchR/StreamRequest/GenericPipelineBehavior.cs b/src/Sample/DispatchR/StreamRequest/GenericPipelineBehavior.cs index 0378708..984865f 100644 --- a/src/Sample/DispatchR/StreamRequest/GenericPipelineBehavior.cs +++ b/src/Sample/DispatchR/StreamRequest/GenericPipelineBehavior.cs @@ -1,4 +1,5 @@ -using DispatchR.Abstractions.Stream; +using System.Runtime.CompilerServices; +using DispatchR.Abstractions.Stream; namespace Sample.DispatchR.StreamRequest; @@ -6,7 +7,7 @@ public class GenericPipelineBehavior(ILogger where TRequest : class, IStreamRequest { - public async IAsyncEnumerable Handle(TRequest request, CancellationToken cancellationToken) + public async IAsyncEnumerable Handle(TRequest request, [EnumeratorCancellation] CancellationToken cancellationToken) { logger.LogInformation("Generic Request Pipeline"); await foreach (var response in NextPipeline.Handle(request, cancellationToken).ConfigureAwait(false)) diff --git a/src/Sample/Sample.csproj b/src/Sample/Sample.csproj index e5f581c..d8b9f69 100644 --- a/src/Sample/Sample.csproj +++ b/src/Sample/Sample.csproj @@ -8,7 +8,7 @@ - + diff --git a/tests/DispatchR.IntegrationTest/DispatchR.IntegrationTest.csproj b/tests/DispatchR.IntegrationTest/DispatchR.IntegrationTest.csproj index 11ac8f1..abfa1e4 100644 --- a/tests/DispatchR.IntegrationTest/DispatchR.IntegrationTest.csproj +++ b/tests/DispatchR.IntegrationTest/DispatchR.IntegrationTest.csproj @@ -17,10 +17,13 @@ all runtime; build; native; contentfiles; analyzers; buildtransitive - + - - + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + diff --git a/tests/DispatchR.TestCommon/Fixtures/StreamRequest/GenericPipelineBehavior.cs b/tests/DispatchR.TestCommon/Fixtures/StreamRequest/GenericPipelineBehavior.cs index 7a0b041..0292a43 100644 --- a/tests/DispatchR.TestCommon/Fixtures/StreamRequest/GenericPipelineBehavior.cs +++ b/tests/DispatchR.TestCommon/Fixtures/StreamRequest/GenericPipelineBehavior.cs @@ -1,3 +1,4 @@ +using System.Runtime.CompilerServices; using DispatchR.Abstractions.Stream; namespace DispatchR.TestCommon.Fixtures.StreamRequest; @@ -6,7 +7,7 @@ public class GenericPipelineBehavior() : IStreamPipelineBehavior where TRequest : class, IStreamRequest, new() { - public async IAsyncEnumerable Handle(TRequest request, CancellationToken cancellationToken) + public async IAsyncEnumerable Handle(TRequest request, [EnumeratorCancellation] CancellationToken cancellationToken) { await foreach (var response in NextPipeline.Handle(request, cancellationToken).ConfigureAwait(false)) { diff --git a/tests/DispatchR.UnitTest/DispatchR.UnitTest.csproj b/tests/DispatchR.UnitTest/DispatchR.UnitTest.csproj index a96f8e0..7e9f677 100644 --- a/tests/DispatchR.UnitTest/DispatchR.UnitTest.csproj +++ b/tests/DispatchR.UnitTest/DispatchR.UnitTest.csproj @@ -17,10 +17,10 @@ runtime; build; native; contentfiles; analyzers; buildtransitive - + - + all runtime; build; native; contentfiles; analyzers; buildtransitive From 838072ea44f8494c9fcac0efe6acfad303073861 Mon Sep 17 00:00:00 2001 From: Felipe Segade Date: Sat, 9 May 2026 13:54:27 +0200 Subject: [PATCH 4/6] Use CPM to manage solution dependencies --- Directory.Packages.props | 25 +++++++++++++++++++ DispatchR.sln | 1 + .../AspireModularSample.AppHost.csproj | 2 +- .../AspireModularSample.ServiceA.csproj | 2 +- .../AspireModularSample.ServiceB.csproj | 2 +- src/Benchmark/Benchmark.csproj | 8 +++--- src/DispatchR/DispatchR.csproj | 12 ++------- src/Sample/Sample.csproj | 8 +++--- .../DispatchR.IntegrationTest.csproj | 18 ++++++------- .../DispatchR.UnitTest.csproj | 18 ++++++------- 10 files changed, 57 insertions(+), 39 deletions(-) create mode 100644 Directory.Packages.props diff --git a/Directory.Packages.props b/Directory.Packages.props new file mode 100644 index 0000000..33561e5 --- /dev/null +++ b/Directory.Packages.props @@ -0,0 +1,25 @@ + + + true + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/DispatchR.sln b/DispatchR.sln index d08ec5b..1c069ef 100644 --- a/DispatchR.sln +++ b/DispatchR.sln @@ -15,6 +15,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution README.md = README.md .gitignore = .gitignore CHANGELOG.md = CHANGELOG.md + Directory.Packages.props = Directory.Packages.props EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".github", ".github", "{0C407C1E-9E95-40A5-ABCA-52AACCC49C96}" diff --git a/src/AspireModularExample/AspireModularSample.AppHost/AspireModularSample.AppHost.csproj b/src/AspireModularExample/AspireModularSample.AppHost/AspireModularSample.AppHost.csproj index 808577f..9841e6d 100644 --- a/src/AspireModularExample/AspireModularSample.AppHost/AspireModularSample.AppHost.csproj +++ b/src/AspireModularExample/AspireModularSample.AppHost/AspireModularSample.AppHost.csproj @@ -12,7 +12,7 @@ - + diff --git a/src/AspireModularExample/AspireModularSample.ServiceA/AspireModularSample.ServiceA.csproj b/src/AspireModularExample/AspireModularSample.ServiceA/AspireModularSample.ServiceA.csproj index bd29c1a..813f57d 100644 --- a/src/AspireModularExample/AspireModularSample.ServiceA/AspireModularSample.ServiceA.csproj +++ b/src/AspireModularExample/AspireModularSample.ServiceA/AspireModularSample.ServiceA.csproj @@ -6,7 +6,7 @@ - + diff --git a/src/AspireModularExample/AspireModularSample.ServiceB/AspireModularSample.ServiceB.csproj b/src/AspireModularExample/AspireModularSample.ServiceB/AspireModularSample.ServiceB.csproj index bd29c1a..813f57d 100644 --- a/src/AspireModularExample/AspireModularSample.ServiceB/AspireModularSample.ServiceB.csproj +++ b/src/AspireModularExample/AspireModularSample.ServiceB/AspireModularSample.ServiceB.csproj @@ -6,7 +6,7 @@ - + diff --git a/src/Benchmark/Benchmark.csproj b/src/Benchmark/Benchmark.csproj index 8c3bd88..3e29984 100644 --- a/src/Benchmark/Benchmark.csproj +++ b/src/Benchmark/Benchmark.csproj @@ -8,17 +8,17 @@ - + - + - - + + all runtime; build; native; contentfiles; analyzers diff --git a/src/DispatchR/DispatchR.csproj b/src/DispatchR/DispatchR.csproj index a9d7ee1..7d55aef 100644 --- a/src/DispatchR/DispatchR.csproj +++ b/src/DispatchR/DispatchR.csproj @@ -1,4 +1,4 @@ - + net8.0;net9.0;net10.0 enable @@ -15,15 +15,7 @@ https://github.com/hasanxdev/DispatchR - - - + diff --git a/src/Sample/Sample.csproj b/src/Sample/Sample.csproj index d8b9f69..ab2eb62 100644 --- a/src/Sample/Sample.csproj +++ b/src/Sample/Sample.csproj @@ -1,4 +1,4 @@ - + net10.0 @@ -7,9 +7,9 @@ - - - + + + diff --git a/tests/DispatchR.IntegrationTest/DispatchR.IntegrationTest.csproj b/tests/DispatchR.IntegrationTest/DispatchR.IntegrationTest.csproj index abfa1e4..e9239bb 100644 --- a/tests/DispatchR.IntegrationTest/DispatchR.IntegrationTest.csproj +++ b/tests/DispatchR.IntegrationTest/DispatchR.IntegrationTest.csproj @@ -1,4 +1,4 @@ - + net10.0 @@ -8,26 +8,26 @@ - - + + all runtime; build; native; contentfiles; analyzers; buildtransitive - + all runtime; build; native; contentfiles; analyzers; buildtransitive - - - - + + + + all runtime; build; native; contentfiles; analyzers; buildtransitive - + diff --git a/tests/DispatchR.UnitTest/DispatchR.UnitTest.csproj b/tests/DispatchR.UnitTest/DispatchR.UnitTest.csproj index 7e9f677..c83da73 100644 --- a/tests/DispatchR.UnitTest/DispatchR.UnitTest.csproj +++ b/tests/DispatchR.UnitTest/DispatchR.UnitTest.csproj @@ -1,4 +1,4 @@ - + net10.0 @@ -8,26 +8,26 @@ - + all runtime; build; native; contentfiles; analyzers; buildtransitive - + all runtime; build; native; contentfiles; analyzers; buildtransitive - - - - - + + + + + all runtime; build; native; contentfiles; analyzers; buildtransitive - + From fb5a23ffef6ba29794788ef3b3c929db2521a83e Mon Sep 17 00:00:00 2001 From: Felipe Segade Date: Sat, 9 May 2026 14:04:41 +0200 Subject: [PATCH 5/6] Update Aspire to fix vulnerability warnings --- Directory.Packages.props | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Directory.Packages.props b/Directory.Packages.props index 33561e5..2e7c4e1 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -3,8 +3,8 @@ true - - + + From 0710756e439873030eefe7b13746fe2bff07edc4 Mon Sep 17 00:00:00 2001 From: Felipe Segade Date: Sat, 9 May 2026 14:19:41 +0200 Subject: [PATCH 6/6] Replace xUnit v2 by v3 --- Directory.Packages.props | 2 +- .../DispatchR.IntegrationTest.csproj | 2 +- tests/DispatchR.UnitTest/DispatchR.UnitTest.csproj | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Directory.Packages.props b/Directory.Packages.props index 2e7c4e1..02f54c3 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -19,7 +19,7 @@ - + \ No newline at end of file diff --git a/tests/DispatchR.IntegrationTest/DispatchR.IntegrationTest.csproj b/tests/DispatchR.IntegrationTest/DispatchR.IntegrationTest.csproj index e9239bb..69e3ded 100644 --- a/tests/DispatchR.IntegrationTest/DispatchR.IntegrationTest.csproj +++ b/tests/DispatchR.IntegrationTest/DispatchR.IntegrationTest.csproj @@ -19,11 +19,11 @@ - all runtime; build; native; contentfiles; analyzers; buildtransitive + diff --git a/tests/DispatchR.UnitTest/DispatchR.UnitTest.csproj b/tests/DispatchR.UnitTest/DispatchR.UnitTest.csproj index c83da73..f758a31 100644 --- a/tests/DispatchR.UnitTest/DispatchR.UnitTest.csproj +++ b/tests/DispatchR.UnitTest/DispatchR.UnitTest.csproj @@ -1,4 +1,4 @@ - + net10.0 @@ -19,11 +19,11 @@ - all runtime; build; native; contentfiles; analyzers; buildtransitive +