Using my inaugural post to point this out. Only Google would have the gumption to include a class in a popular NuGet package that conflicts with a System type in .NET.
Comments
Log in with your Bluesky account to leave a comment
I use MassTransit and MediatR in many projects. Both packages provide an IMediator interface. Both have a Send method. Many times I accidentally injected an IMediator from MassTransit instead of one from MediatR. In this case, the code compiles like a charm. The problem only showed up in runtime.
Comments