Skip to content

Commit

Permalink
Adding type forwardings for types that were moved to the Contracts pa…
Browse files Browse the repository at this point in the history
…ckage
  • Loading branch information
ydie22 committed Nov 14, 2022
1 parent 9128e9c commit df43601
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/MediatR/TypeForwardings.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
using System.Runtime.CompilerServices;
using MediatR;

[assembly: TypeForwardedTo(typeof(IBaseRequest))]
[assembly: TypeForwardedTo(typeof(IRequest<>))]
[assembly: TypeForwardedTo(typeof(IRequest))]
[assembly: TypeForwardedTo(typeof(INotification))]
[assembly: TypeForwardedTo(typeof(Unit))]

0 comments on commit df43601

Please sign in to comment.