Kristian Hellang
Kristian Hellang
> 2\. There's no non-generic overload of `AddHttpClient` If you could convince Microsoft to add this, it would be pretty easy to write, but looking at the code, the generic...
Hey @sahar2550! 👋🏻 It's probably related to the `DecoratedType` introduced in 4.2.0. I'm not sure how the attached code is related to the xFixture error message though 🤔 Do you...
Hello @krishnan1159! I just ran the following test without issues: ```csharp using Microsoft.Extensions.DependencyInjection; using Xunit; namespace Scrutor.Tests { public partial class ScanningTests { [Fact] public void Blah() { Collection.Scan(scan =>...
It results in the following registrations, which matches what you'd expect, right? ServiceType | ImplementationType -- | -- `IGoodVehicle` | `GoodVehicle` `IBadVehicle` | `BadVehicle` `IVehicle` | `GoodVehicle` `IVehicle` | `BadVehicle` ...
The string interpolation in the examples isn't valid syntax anymore. ``` csharp public string FullName => "\{FirstName} \{LastName}"; ``` should be changed to ``` csharp public string FullName => $"{FirstName}...
This could be solved by piggybacking on endpoint routing (#32) and NSwag/Swashbuckle, right?
The main benefit is playing nice with the rest of the ecosystem, like OpenAPI tooling, but it also brings other benefits like better performance. By using endpoint routing, you solve...
> Our team has a requirement that all assemblies in our product, including dependencies, must be strong-name signed. Why would you have such a requirement? 🤔
> Is there any way to do this without having to remove the extra entries afterwards? Not really. You either have to filter them out using a custom implementation of...
Can I ask why you care about the extra entries? Just for debugging purposes, or?