Matt

Results 15 comments of Matt

Hey, I wanted to use this so I went ahead and fixed the issues. If you're interested in downloading it you can find the fixed release here: https://github.com/msuddaby/ValheimWebMap/releases/tag/v1.2.0

Hey, I wanted to use this so I went ahead and fixed the issues. If you're interested in downloading it you can find the fixed release here: https://github.com/msuddaby/ValheimWebMap/releases/tag/v1.2.0

Hey, I wanted to use this so I went ahead and fixed the issues. If you're interested in downloading it you can find the fixed release here: https://github.com/msuddaby/ValheimWebMap/releases/tag/v1.2.0

Hey, I wanted to use this so I went ahead and fixed the issues. If you're interested in downloading it you can find the fixed release here: https://github.com/msuddaby/ValheimWebMap/releases/tag/v1.2.0

@TicTac705 had the same issue. Changing `res/values-v35/styles.xml` to the following seems to have fixed it: ``` true @android:color/black false true ``` The status bar is completely white, but only while...

> [@msuddaby](https://github.com/msuddaby) is this happening only for file-based apps (`dotnet run file.cs`) or project-based apps as well? It seems like an MSBuild issue, probably [dotnet/msbuild#3864](https://github.com/dotnet/msbuild/issues/3864) - do you have some...

> > I am able to build and run full projects from the command line just fine using dotnet run. > > You might be having those projects in a...

Sentry works great across most ASP.NET scenarios (Razor Pages, MVC, Web API, Blazor WebAssembly) but falls short with Blazor Server, which is frustrating. The error reporting is decent, you still...

@jamescrosswell I'm attempting to write some IHubFilter middleware to see if I can get anything useful out of these transactions. How did you get to that page with the span...

Ok, I've got... something. Here's a janky IHubFilter that leaks memory. ```cs public class AutomaticBlazorTelemetryHubFilter : IHubFilter { private static readonly ConcurrentDictionary ConnectionPages = new(); private static readonly ConcurrentDictionary PageTransactions...