Erlend Angelsen
Erlend Angelsen
From what I can understand you have a source collection with all the items and you want to filter the items into two separate caches? In that case you can...
I figured out what was causing the issue. My computer was set to Norwegian locale and once I switched to English I got Refit to build again. [https://github.com/dotnet/msbuild/issues/5502](url)
I agree, but the error is in MSBuild and not Refit. Refit make use of a version comparison which fails within MSBuild
The error happens when using both Sentry SDK and Sentry Serilog packages in a MAUI project
Thanks for the tip, @jamescrosswell. I'm trying to set up the logger as early as possible in my MauiProgram ```csharp Logger .WriteTo.Sentry(o => { o.InitializeSdk = false; o.Environment = settings.AppEnvironment.ToString();...