Ben Salmon
Ben Salmon
Yes with the method above, or by manually editing the diff. It probably won't help you though, e.g. if you're trying to change peer deps to stop getting warnings/errors with...
Not sure if it's worth a separate issue, but also suppressing the notifications doesn't work.
You can install the eslint-plugin-react-hooks RC to get around this for now. `npm i eslint-plugin-react-hooks@rc`
@nikolailehbrink your issue is with eslint-plugin-import. I don’t use it personally, but you could try see if they have an rc/beta/preview branch with eslint 9 support.
```csharp public class Create where TEntity : Common { public class Command : IRequest { public required List DtoInList { get; set; } public Func? TagStrategy { get; set; }...
SDK version: 8.0.302 Definitions example: ```csharp public static class Create { public class Command : IRequest { public required int foo { get; set; } } public class Handler :...
I'm looking into the code, it's a large codebase that I recently inherited so it's possible. While googling I found this old MediatR issue that seems to be the same...
Ah yeah you're right, they are concrete registrations for generic handlers. It seems to be an attempt to implement generic CRUD operations but it was abandoned at some point so...
Really appreciate your help. That probably explains why the app is so deathly slow to build as well. I might suggest adding a warning if that check is triggered, because...
For reasons beyond my understanding, I'm no longer getting the exception now that I'm specifying the assembly. But it doesn't register the generic handlers, they have to be done separately...