Ben Salmon

Results 2 issues of Ben Salmon

**Product and Version Used**: Roslynator.Analyzers 4.12.3 **Steps to Reproduce**: Have a class such as below: ```csharp public class Create where TEntity : Common ``` And a usage of the class...

After updating from 12.2.0 to 12.3.0, I'm getting a runtime exception during app instantiation. The code: ```csharp // Register MediatR Assembly[] assemblies = Assembly.GetEntryAssembly()!.GetReferencedAssemblies() .Select(Assembly.Load).Append(Assembly.GetCallingAssembly()).ToArray(); _ = services.AddMediatR(config => config.RegisterServicesFromAssemblies(assemblies));...