Springy
Springy
I just noticed that ".NET Standard + Platform Extensions,Version=v2.0" exists, which looks good so far 👍 Must be relatively new -- or I just did overlook it recently. BTW: Is...
I know. This still does not change that the information on apisofnet is wrong. Other example: https://apisof.net/catalog/Microsoft.AspNetCore.Mvc.ApplicationParts.CompiledRazorAssemblyPart Tells me it only exists on netcore3.0. I'm using this for months now,...
Kind question: Is this project dead? The latest NuGet package 0.2.12-alpha was released 1.5 years ago. Did this project get integrated into some other project I'm not aware of? Currently...
I would not consider `HttpListener` deprecated. Its directly tied to http.sys driver which constantly gets updated with newer IIS or OS versions since IIS itself heavily depends on it. Kestrel...
> and it's only listening for the process in which it is running I wonder how this is being checked?
Why there is this difference multi-image and multi-frame? Is there any other picture format than GIF which is multi-frame in way that every frame has the same size at all?...
Hmm.. I can't remember having the need to resize an entire file but always only a specific frame of it. BTW: For GIFs in addition to the left-top-width-height properties per...
BTW: Currently the StackTrace property of the TimeoutException for exhausted pool exceptions is always null because it just gets created for the inner exception and isn't an exception which has...
Why this f*cking artificial limitation (still) exists at all? Something which works: ```razor private RenderFragment Test(int a, int b, int c) => __builder => { }; ``` ~~Decompilation~~ What the...