Sören Nils Kuklau
Sören Nils Kuklau
Blazor 3.2 added the ability to specify that the nav link's `href` should match [_a prefix_ of the current URL, rather than the entire URL](https://docs.microsoft.com/en-us/aspnet/core/blazor/fundamentals/routing?view=aspnetcore-5.0#navlink-and-navmenu-components), so you can do something...
My website has different paths (rather than different host names) depending on the build config, like: * http://mysite.example/BlazorSite/ * http://mysite.example/BlazorSite-Staging/ I'm using `ServiceWorkerBaseUrl` and `ManifestBaseUrl` to set the base accordingly....
I use Buildalyzer (and various other libraries) to check the state of a `csproj`. One of the steps is to add two package references if needed, where "needed" means: *...
I see there was a pull request #150 way back in the day, but I'm not sure: * whether that's supposed to work from .NET Standard (since the code mostly...
`SvgDocument` currently initializes with a `PointsPerInch` variable. This is apparently used as a scale factor, e.g. in `Ascent()`. However, modern systems have no notion of a system DPI — each...
I'm getting a hard-to-reproduce problem with a serializer. The type looks like this: ``` C# namespace eL_libCommon.Container.GridLayouts { public enum HashAlgorithm { MD5 } public enum CompressionAlgorithm { GZip }...
If two people both using the crossposter retweet the same tweet, this will currently result in two disparate Mastodon toots (with their own respective threads, even). Could hidden metadata (such...
I made a simple INPC property like so: ```csharp [ObservableProperty] private bool _IsReadOnly; ``` As expected, I can now bind to `IsReadOnly` in XAML. Great! However, VS now shows me...
Right now, the entire result is placed in a div. Given the example template: ```xml @context.Title (@context.Year) ``` , a result div might be: ```html "The Shining" "(1977)" ``` If...
Once https://github.com/dotnet/runtime/issues/39208 is fixed, this can be reverted.