Replies: 1 comment
-
Tried out Rider to see if it would be any more useful and... |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hey folks. I have a complex MAUI application that targets pretty much every platform MAUI supports with primary targets being Windows and macOS/macCatalyst, and secondary targets Android and iOS.
In most cases, I rarely see issues when developing on Windows. However, macOS is it's own special sort of beast. For example, on macOS
Ctrl + Click
into theVisualElement
implementation forLoaded
, but I am unable to set breakpointsHere's an example exception I'm currently facing after updating MAUI (.NET 9 9.0.60) and performing a shell navigation
The exception is stuck in
UIApplication
with theInnerException
being null. However, a separate printout to the console does tell me my exception is happening somewhere inLoaded
due to a missing HandlerOkay. It's trying to dispose of the page and is failing to unload it because the Page handler seems to be missing? Why? Let's break point in
ViewExtensions.OnLoaded
. Oh... that doesn't work in VS Code (breakpoint says the module isn't loaded even though "Just My Code" is disabled).So my question to the community how you debug issues like this on macOS
Beta Was this translation helpful? Give feedback.
All reactions