Espen Røvik Larsen
Espen Røvik Larsen
Nullable annotations for reference types is basically a compiler trick. It doesn't change the API surface or have any runtime implications at all, but it adds some attribute metadata to...
This dropped in my feed [.NET Framework 4.5.2, 4.6, and 4.6.1 will reach End of Support on Apr 26, 2022](https://devblogs.microsoft.com/dotnet/dotnet-framework-45-46-461-end-of-support/).
@dotMorten
I've actually managed to get WinUI fully working and mapping to MAUI. I'm willing to complete all the controls for MAUI and make sample apps for both WinUI (native) and...
I understand. Well, I pushed the commit with support for WinUI. It breaks WPF for .NET 5, but I won't do anything about that. For the project I'm working on...
Thank you for the update Morten. It's exiting times with MAUI progressing nicely, and AGR v200 on the horizon.
See https://github.com/dotnet/reactive/issues/1461 for System.Reactive supporting ARM64.
I used this code to circumvent the problem at runtime. ``` csharp internal partial class UserClient // NSwag generated client { partial void UpdateJsonSerializerSettings(System.Text.Json.JsonSerializerOptions settings) { settings.TypeInfoResolver = new DefaultJsonTypeInfoResolver...
https://andrewlock.net/creating-a-source-generator-part-9-avoiding-performance-pitfalls-in-incremental-generators/ Andrew Lock wrote about this recently.
@nblumhardt One could consider to NOT create a message with parameters and rather just output a single string to Serilog. And with StringInterpolatedHandler it can be done in a highly...