Jonas Nyrup

Results 305 comments of Jonas Nyrup

> Maybe overloading the `WithMapping` with a pair of conversion lambdas would be a better fit should we want to target a specific property? I'm not convinced we should mix...

> What about bumping `System.Threading.Tasks.Extensions` to 4.5.4 in the same go? > > Applies to netstandard2.0 and net47.. In general we want to use the lowest possible available libraries for...

> > Imagine an application app having a dependency on [email protected] > > What about the other way round? It's the same thing, no? > > ``` > tests ->...

Looks good, I don't have any objections. (I've several times thought about if we should add this API, but never got to open up a proposal) I noticed that `NotThrow`...

Thanks for reporting this bug and providing a reproducing example. For investigating I reduced the example to ```cs var dict1 = new Dictionary { ["{}"] = "" }; var dict2...

FYI: This is due to how C# widens the `short` to an `int` before invoking `int < int`. https://learn.microsoft.com/en-us/dotnet/standard/base-types/type-conversion#implicit-conversion-with-the-implicit-operator

Anyone has a workaround, even a partial one, or pointers to where in the WCF pipeline this should be implemented?

Thanks! I couldn't resist trying to squeeze out some extra performance using `MakeGenericMethod`, even though this is only called on the exceptional path. | Method | Mean | Error |...

Only opening a browser per unique `LaunchOptions` would get us from +900 browsers and down to ~10. And if we still open a `Browser` per class, we should still get...