Hi team,
I'm encountering a runtime issue with the SfScheduler control in my .NET MAUI application. The control works flawlessly on both iOS and Android if I simply deploy the app without attaching the debugger.
However, when I run the app on iOS with the Visual Studio debugger attached, the app hits multiple exceptions like the one below:
```
System.Resources.MissingManifestResourceException
Message=Could not find the resource "Syncfusion.Maui.Scheduler.SfScheduler.Resources.SfScheduler.resources" among the resources "" embedded in the assembly "Syncfusion.Maui.Scheduler", nor among the resources in any satellite assemblies for the specified culture. Perhaps the resources were embedded with an incorrect name.
```
```
System.IO.FileNotFoundException
Message=Could not load file or assembly '/var/mobile/Containers/Data/Application/280B2114-DF73-4981-B258-334C7CC8549B/Documents/MyAppMauiApp.content/Syncfusion.Maui.Scheduler.resources.dll' or one of its dependencies.
```
These errors only occur on iOS (not on Android), and the debugger stops execution several times, requiring me to press F5 repeatedly to continue. Once past these interruptions, the app functions normally.
Is there a known workaround or fix for this issue? Or perhaps a recommended way to suppress these debugger breaks for known benign exceptions?
Thanks in advance!