Skip to content

Commit

Permalink
Merge branch 'main' into renovate/xunit-dotnet-monorepo
Browse files Browse the repository at this point in the history
  • Loading branch information
asimmon authored Sep 20, 2024
2 parents 866e385 + 51e78ed commit 32b8fe1
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Analyzer.Testing" Version="1.1.2" PrivateAssets="all" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.11.0" PrivateAssets="all" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Include="xunit" Version="2.9.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

<ItemGroup>
<PackageReference Include="GSoft.Extensions.Xunit" Version="1.0.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Include="xunit" Version="2.9.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down
4 changes: 4 additions & 0 deletions src/Workleap.Extensions.MediatR/MediatorBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,10 @@ void Configure(MediatRServiceConfiguration configuration)
// See: https://github.com/jbogard/MediatR/pull/989#issuecomment-1883574379
RegisterPreAndPostNonGenericClosedProcessors(configuration);

// Restore the previous behavior of registering generic handlers from before MediatR 12.4.1
// https://github.com/jbogard/MediatR/compare/v12.4.0...v12.4.1
configuration.RegisterGenericHandlers = true;

// Allow developers to override default configuration if needed
userDefinedConfigure?.Invoke(configuration);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="MediatR" Version="12.4.0" />
<PackageReference Include="MediatR" Version="12.4.1" />
<PackageReference Include="MediatR.Contracts" Version="2.0.1" />
<PackageReference Include="Microsoft.CodeAnalysis.PublicApiAnalyzers" Version="3.3.4">
<PrivateAssets>all</PrivateAssets>
Expand Down

0 comments on commit 32b8fe1

Please sign in to comment.