From df4360181d69a091a5cc0e755782e1e690493be4 Mon Sep 17 00:00:00 2001 From: Yves Dierick Date: Mon, 14 Nov 2022 15:16:38 +0100 Subject: [PATCH] Adding type forwardings for types that were moved to the Contracts package --- src/MediatR/TypeForwardings.cs | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/MediatR/TypeForwardings.cs diff --git a/src/MediatR/TypeForwardings.cs b/src/MediatR/TypeForwardings.cs new file mode 100644 index 00000000..dc66c11b --- /dev/null +++ b/src/MediatR/TypeForwardings.cs @@ -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))] \ No newline at end of file