Kristian Hellang

Results 237 comments of Kristian Hellang

The whole reason there is a `UseStructureMap` method is for the ASP.NET Core host to automatically wire up the container. This means also calling `Startup.ConfigureContainer` with the specific `TContainerBuilder`, _before_...

There's already a PR at #24 (although that seems to have drifted pretty far out of scope by now). The question I have is; how valuable is this? Is this...

Oh, I definitely think passing a pre-configure container is valuable, but I'm just not sure this is the way to go. If we bring this in as-is, it could be...

Hi @TonyValenti! 👋 > Are you open to combining/joining efforts? What would that mean, exactly? 🤔

I'd like to see more details, or possibly a PR outlining the changes you're suggesting. This package is deliberately simple and ships a single .cs file as source. At runtime...

Hi @JBac! 👋🏻 The file is generated from [mime-db](https://github.com/jshttp/mime-db), which in turn is compiled from IANA, Apache and nginx's MIME types. If you're able to get the entry into mime-db,...

BTW, looks like they've already requested some documentation for jfif; https://github.com/jshttp/mime-db/issues/177.

The package has targets for .NET Standard 2.0 and 2.1, which should support Xamarin.Mac 3.8 and 5.16 [according to this](https://docs.microsoft.com/nb-no/dotnet/standard/net-standard?tabs=net-standard-2-0). I'm not going to add additional targets in order to...

I had the exact same experience as most people here. Been running fine for 2+ years and suddenly it started failing now. I didn't even have to uninstall the extension...

Hi @jasontaylordev! 👋🏻 It _could_ technically be accomplished using an existing extensibility point, `RegistrationStrategy`: ```csharp using Microsoft.Extensions.DependencyInjection; namespace Scrutor; public static class HttpClientExtensions { public static IServiceTypeSelector WithHttpClient(this IServiceTypeSelector selector)...