-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
iOS app startup slow in debug #11392
Comments
We've moved this issue to the Backlog milestone. This means that it is not going to be worked on for the coming release. We will reassess the backlog following the current release and consider this item at that time. To learn more about our issue management process and to have better expectation regarding different types of issues you can read our Triage Process. |
This looks a bit slower than it should be, but I can't repro with the referenced sample project. So I have a few questions:
|
all
yes
If I can get the app only a device, I'll let you know. :(
This is what I see while the splash is up until the app is loaded.
|
@rolfbjarne I was able to deploy to my iPhone 14 Pro and the startup screen only appeared for a few seconds. That's what I expect to see on the simulator as well, not 30s+ very time even with XAML Hot Reload disabled. |
This is somewhat strange :/
|
@davidortinau this might help, no promises though. I've just spent the entire day fighting slow start-up on my iPad, so slow that iOS was killing the app. I started messing about with Hot Reload based on your comments and found the following -
Now the app launches fast enough so iOS doesn't kill it and also Hot Reload has started working. As I say, no promises since your problems are with the simulator and mine were with a physical device. |
@rolfbjarne we're having similar issues (unoplatform/uno#10748) with Uno apps, the startup is slow enough that the app is getting killed by the OS. We tried disabling Hot Reload (not sure if it applies) and disabling the Interpreter, but it does not help. |
@jeromelaban that stack trace here: https://user-images.githubusercontent.com/57812285/208118459-60395490-51c2-4b78-aa97-68e0b4caed15.png makes me think it's a deadlock of some kind. A fully symbolicated crash report will show what the app is doing (this requires disabling the interpreter to be useful), alternative I can have a look if I get a test project. |
@rolfbjarne thanks for looking it up! We'll check that, thanks. |
I am in the exact same situation, my app wasnt starting at all. So I tried https://github.com/dotnet/maui-samples -> WorkingWithMaps example and I am getting the exact same behaviour. I know very little regarding iOS dev but looks to me like a watchdog as mentioned is terminating the app after prolonged period of time. I tried disabling Hot Reload for Maui but that hasnt helped either. Any suggestions? I don't understand how this can be moved to 'the Backlog milestone. ' given that it literally prevents development on iOS devices? Is there anything more severe than a showstopper bug?
|
@rolfbjarne I can duplicate this with I just put a breakpoint on the first line, start debugging on my iPhone 12 (iOS 16.2) and wait 20 seconds for the watchdog to kill the app. Window = new UIWindow (UIScreen.MainScreen.Bounds); Has something changed in Weirdly this crash does not get symbolicated for me neither... even if I had (sadly) no such issue with other projects :) OTOH I'm pretty sure it's just pointing to the current line of code (breakpoint) and debugger. |
As a follow-up I initially thought this problem might be isolated to the fact that I was using an older device iPhone 6s but I have just tested against an iPhone SE and experienced the same behaviour so this definitely appears to be a bug across at least multiple if not all devices. |
@MaximG1234 Try setting the Linker Behavior to "Link Framework SDKs only" |
Hi @JohnHunterACS, Thanks just tried that with iPhone 6S and no difference, will try it with another device when I get a chance but doesn't appear to be related. I'm surprised there aren't more people posting regarding this issue. |
We solved the watchdog problem for the simulator, but never for device. For device the process must be started with the native debugger (lldb/gdb-server) to keep the watchdog quiet, and that had other consequences (slower startup, mono's use of signals would confuse lldb/gdb-server and cause random crashes, etc.) |
@rolfbjarne what changed between xamarin and net6+ that changed that behavior? Or is it iOS that changed? |
@jeromelaban afaik it's never been possible to put a breakpoint in the FinishedLaunching method on device and not have watch dog trigger after 20s. |
@rolfbjarne damn, I preferred the confort of my memories ;-) I guess I mixed up the sim fix and the fact we knew how (native debugger) it could be avoided. |
The newly created application opens in more than 8 seconds, regardless of debug or release. My phone iphone 11 is a real device. Is there a solution? |
@ertandk please file a new issue with a test project, and we'll have a look. Each project is different, so without a test project we won't be able to say anything about your project in particular. |
https://we.tl/t-BadrdHa5S7 the project is a .net 6.0 project created from scratch. (I also tried with 7.0, there was no change in speed.) video1.mp4 |
android.webm |
@ertandk I have not had a chance yet to try this on another computer but I have already provided an example application where this issue is replicable in the above comment (https://github.com/dotnet/maui-samples). On my machine, the last time I checked I cannot debug any iOS application on a real device and it is clear (or at least likely IMO) these issues are related given the error messages I am receiving. Obviously it is possible this is isolated to my machine and I will comment when I've had a chance to try on another (should be in the next week or so) but I have no reason to believe that this is specific to me given there are clearly other users who are experiencing the same (or very similar) issue, I have already tried multiple iOS devices with the same results. |
If it's killed in less than 10 seconds, it's not a problem with the watchdog and a slow launch (the watchdog kicks in after 20s). I would suggest filing a separate issue with your test project, and we can have a look. |
I'm deploying from Windows 11. I'm using an iPhone 15 Pro connected via USB C. |
@nmg196 all the workarounds mentioned here are for iOS remote scenarios (iOS device plugged into a Mac, and VS connected through Pair to Mac). If you are using Hot Restart (iOS device plugged into Windows), please file an issue from inside VS as I mentioned in my previous comment. |
@emaf Thanks for the update. The reason the app might not have gotten killed is that it didn't have any "real" work to do during launch to add an extra 2 seconds or so. You can try using DF350FD611E507F7218ADCCF7E31A7085A52456F7D0C7F27824B0C1F93AC041A (a random "fake" key I generated for you) for the value of You could also try doing a But it might just be that your device is fast enough. Mine is an iPhone 11. It was running iOS17.4. So I updated that, and the first 3 or 4 times I ran the app with the interpreter on it was comparable to it being disabled. But then I tried enabling XAML Hot Reload and the Module Load Messages to see if it would work with those and it went back to getting killed and now disabling them didn't fix it. So I'm back to disabling the interpreter. @nmg196 I am not experiencing this problem at all connecting directly between Windows and the iOS device. My guess is that something in the launch life cycle is throwing an exception, which makes it pretty hard to debug because you generally can't have breakpoints anywhere in there anyway because that will also cause the app to get killed. |
This conversation seems to be going round and round in circles, it's incredibly frustrating for someone like myself who cannot run my app on an iPhone. It's being ported from Xamarin where it ran very well. The discussions above about turning off Module Load Messages seem pointless. Even when apps are run on the device itself (outside VS) they take 20 seconds to start and then crash. I simply don't understand why this issue is not getting the attention it deserves. |
One of the main problems here is that there are so many reasons why an app can be slow to launch. You might even run into multiple versions of this problem, where you solve one version, and see no improvement because you're running then into a different version. For instance, @emaf mentions above that he can reproduce a problem when attaching the debugger. That's obviously not the problem you're seeing if your app doesn't launch even when the debugger is not attached. In order to avoid further confusion as much as possible, I think it's best to limit this particular issue to what @emaf can reproduce and is looking at, which occurs when both of these are true:
If that's not the case, I wrote up a questionnaire to try to untangle this: https://gist.github.com/rolfbjarne/72e051b78e59c7d48ed6b3b5e379e394 |
I have the same issue and it's frustrating. In order to fix I added an empty page as first Tab of my TabBar. In this way i can debug. Waiting for a real solution. |
I am experiencing the same issue as the users above when debugging using Visual Studio from Windows with the device connected to a Mac in a remote scenario. Here are the logs I can provide for reference: Physical device tested: Iphone XR Using Visual Studio on WindowsAttempts with UseInterpreter = true Log 1: (23s)19:01:23:429 INFO: 19:01:25:145 INFO: Launching app '***' on device... 19:01:25:145 INFO: /Users/lucasvor/Library/Caches/Xamarin/XMA/SDKs/dotnet/packs/Microsoft.iOS.Sdk/17.2.8053/tools/bin/mlaunch --devname "Lucas’s iPhone" --killdev "/Users/lucasvor/Library/Caches/Xamarin/mtbs/builds/***/6e38320f77df20136c67871b7b69fa5e76e7eb9d69657ba781b8c0af84224325/bin/Debug/net8.0-ios/ios-arm64/device-builds/iphone11.8-17.5.1/***.app" --launchdev "/Users/lucasvor/Library/Caches/Xamarin/mtbs/builds/***/6e38320f77df20136c67871b7b69fa5e76e7eb9d69657ba781b8c0af84224325/bin/Debug/net8.0-ios/ios-arm64/device-builds/iphone11.8-17.5.1/***.app" -argument=-monodevelop-port -argument=10000 -argument=-connection-mode -argument=usb --setenv=__XAMARIN_DEBUG_PORT__=10000 --wait-for-unlock -v --sdkroot "/Applications/Xcode.app/Contents/Developer" -sdk 17.5 19:01:25:145 INFO: Starting debugger connection to the app '***'. Debugger port: 52608, Device port: 10000 19:01:25:145 INFO: [iOS Debugger] Connecting to "Lucas’s iPhone" over USB on port 10000... 19:01:25:145 INFO: Launching... 19:01:25:145 INFO: Creating command connection... 19:01:25:711 INFO: Using Xcode 15.2 found in /Applications/Xcode.app/Contents/Developer 19:01:25:727 INFO: Xamarin.Hosting: Device discovery started 19:01:25:867 INFO: Xamarin.Hosting: Device discovery event: Connected (00008310-000D34321428A01E) 19:01:25:927 INFO: Xamarin.Hosting: Connected to Lucas???s iPhone (00008020-000239013C0B002E) in 00:00:00.0052381 19:01:25:927 INFO: Xamarin.Hosting: Device discovery event: GizmoPaired (00008310-000D34321428A01E) 19:01:25:927 INFO: Xamarin.Hosting: Device discovery event: Connected (00008020-000239013C0B002E) 19:01:26:053 INFO: Xamarin.Hosting: Connected to Lucas???s Apple??Watch (00008310-000D34321428A01E) in 00:00:00.0069230 19:01:26:113 INFO: Xamarin.Hosting: Version: 699ed5eaf2 (refs/heads/main) 19:01:26:113 INFO: Xamarin.Hosting: Verbosity: 1 19:01:26:113 INFO: Xamarin.Hosting: Xamarin.Hosting 19:01:26:113 INFO: Xamarin.Hosting: Xcode Version: 15.2 19:01:26:113 INFO: Xamarin.Hosting: Xcode: /Applications/Xcode.app 19:01:26:582 INFO: xcrun devicectl -j /var/folders/xw/yr5q5mh53hl1zft5lbxjppb40000gn/T/tmprHj56i.tmp -v device info lockState --device "Lucas???s iPhone" 19:01:27:346 INFO: Xamarin.Hosting: Device discovery event: Connected (00008310-000D34321428A01E) 19:01:27:353 INFO: Xamarin.Hosting: Device discovery event: Connected (00008020-000239013C0B002E) 19:01:27:399 INFO: Xamarin.Hosting: Device discovery event: GizmoPaired (00008310-000D34321428A01E) 19:01:27:492 INFO: Xamarin.Hosting: Connected to Lucas???s iPhone (00008020-000239013C0B002E) in 00:00:00.1015860 19:01:27:881 INFO: Current device lock state: 19:01:27:884 INFO: ? unlockedSinceBoot: true 19:01:27:899 INFO: Command Completed, took 1.266 seconds 19:01:27:930 INFO: 2024-06-18 19:01:27.849-0300 Acquired tunnel connection to device. 19:01:27:930 INFO: Using verbose logging. 19:01:27:945 INFO: ? passcodeRequired: false 19:01:27:945 INFO: 2024-06-18 19:01:27.851-0300 Acquired usage assertion. 19:01:27:945 INFO: ? deviceIdentifier: 6789EDFE-2BBD-4F35-8611-F5D71DE16329 19:01:27:960 INFO: Saving JSON output file to /var/folders/xw/yr5q5mh53hl1zft5lbxjppb40000gn/T/tmprHj56i.tmp 19:01:28:071 INFO: xcrun devicectl -j /var/folders/xw/yr5q5mh53hl1zft5lbxjppb40000gn/T/tmpKbDA1y.tmp -v device process launch --terminate-existing --device "Lucas???s iPhone" com.LucasApps.LOTRConverter17 --monodevelop-port 10000 --connection-mode usb 19:01:28:404 INFO: Xamarin.Hosting: Connected to Lucas???s Apple??Watch (00008310-000D34321428A01E) in 00:00:00.1025549 19:01:28:463 INFO: Xamarin.Hosting: Could not locate the current host (B5EAA7D7-FB04-576C-93DE-592BCF3EF60E) within the list of allowed hosts (564DFEE5-D43E-F5D8-DDC0-8B85E21CB6C7, FA2C8A4E-8041-502B-98C6-BB5EAC80298D) for the device 'Lucas???s iPhone'. Please enable wireless debugging in Xcode in order to use this device wirelessly. 19:01:28:495 INFO: Xamarin.Hosting: Ignoring wireless connection to Lucas???s iPhone because wireless debugging is disabled for this device. 19:01:29:723 INFO: Saving JSON output file to /var/folders/xw/yr5q5mh53hl1zft5lbxjppb40000gn/T/tmpKbDA1y.tmp 19:01:29:732 INFO: Command Completed, took 1.645 seconds 19:01:29:778 INFO: 2024-06-18 19:01:29.318-0300 Enabling developer disk image services. 19:01:29:778 INFO: Using verbose logging. 19:01:29:778 INFO: 2024-06-18 19:01:29.308-0300 Acquired tunnel connection to device. 19:01:29:778 INFO: 2024-06-18 19:01:29.444-0300 Acquired usage assertion. 19:01:29:794 INFO: Launched application with com.LucasApps.LOTRConverter17 bundle identifier. 19:01:29:824 INFO: The app 'com.LucasApps.LOTRConverter17' launched with pid 3322 19:01:30:276 INFO: The application has been launched 19:01:30:276 INFO: 19:01:31:092 INFO: [iOS Debugger] Connecting to "Lucas’s iPhone" over USB on port 10000... 19:01:31:104 INFO: Connecting to debug stream from device... 19:01:31:143 INFO: [iOS Debugger] Connecting to "Lucas’s iPhone" over USB on port 10000... 19:01:31:143 INFO: [iOS Debugger] Connected to "Lucas’s iPhone" over USB on port 10000. 19:01:31:143 INFO: [iOS Debugger] Connected to "Lucas’s iPhone" over USB on port 10000. 19:01:31:158 INFO: [iOS Debugger] Connected to "Lucas’s iPhone" over USB on port 10000. 19:01:31:158 INFO: Waiting for the debugger connection signal... 19:01:31:158 INFO: Debugger connection completed 19:01:31:158 INFO: Debugger connection signal received 19:01:31:158 INFO: Connecting to debug stream from remote debugger... 19:01:31:158 INFO: Connecting to remote debugger on port 52608... 19:01:31:158 INFO: Connecting to debug console stream... 19:01:31:624 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Private.CoreLib.dll [External] 19:01:31:700 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Microsoft.iOS.dll [External] 19:01:31:819 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Runtime.dll [External] 19:01:31:873 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Collections.dll [External] 19:01:32:061 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Runtime.InteropServices.dll [External] 19:01:32:241 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Threading.Thread.dll [External] 19:01:32:345 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Threading.dll [External] 19:01:32:542 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/***.dll 19:01:32:728 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Private.Uri.dll [External] 19:01:32:826 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Microsoft.Maui.Controls.Xaml.dll [External] 19:01:32:954 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Microsoft.Maui.Controls.dll [External] 19:01:33:049 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Collections.Concurrent.dll [External] 19:01:33:154 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Microsoft.Maui.Graphics.dll [External] 19:01:33:223 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Numerics.Vectors.dll [External] 19:01:33:285 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.ObjectModel.dll [External] 19:01:33:666 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Xml.ReaderWriter.dll [External] 19:01:33:731 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Private.Xml.dll [External] 19:01:33:797 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Memory.dll [External] 19:01:33:860 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Diagnostics.TraceSource.dll [External] 19:01:33:927 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Collections.NonGeneric.dll [External] 19:01:34:032 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Collections.Specialized.dll [External] 19:01:34:165 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.ComponentModel.Primitives.dll [External] 19:01:34:229 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.ComponentModel.dll [External] 19:01:34:306 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Text.RegularExpressions.dll [External] 19:01:34:381 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Reflection.Emit.ILGeneration.dll [External] 19:01:34:444 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Reflection.Emit.Lightweight.dll [External] 19:01:34:572 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Reflection.Primitives.dll [External] 19:01:34:664 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Net.Primitives.dll [External] 19:01:34:795 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Diagnostics.Tracing.dll [External] 19:01:34:930 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Runtime.Intrinsics.dll [External] 19:01:35:081 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Microsoft.Win32.Primitives.dll [External] 19:01:35:153 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Net.Http.dll [External] 19:01:35:332 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Net.Security.dll [External] 19:01:35:477 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Security.Cryptography.dll [External] 19:01:35:548 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Formats.Asn1.dll [External] 19:01:35:694 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Text.Encoding.Extensions.dll [External] 19:01:35:750 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Runtime.Numerics.dll [External] 19:01:35:812 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Security.Claims.dll [External] 19:01:35:918 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Net.Sockets.dll [External] 19:01:36:016 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Net.NameResolution.dll [External] 19:01:36:137 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Diagnostics.DiagnosticSource.dll [External] 19:01:36:251 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Threading.ThreadPool.dll [External] 19:01:36:347 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Linq.dll [External] 19:01:36:447 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Net.Quic.dll [External] 19:01:36:554 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.IO.Compression.dll [External] 19:01:36:646 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.IO.Compression.Brotli.dll [External] 19:01:36:776 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Threading.Channels.dll [External] 19:01:36:875 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Net.NetworkInformation.dll [External] 19:01:36:978 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Reflection.Emit.dll [External] 19:01:37:079 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Reflection.Metadata.dll [External] 19:01:37:255 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Collections.Immutable.dll [External] 19:01:37:337 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.IO.MemoryMappedFiles.dll [External] 19:01:37:445 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Runtime.Loader.dll [External] 19:01:37:544 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Linq.Expressions.dll [External] 19:01:37:700 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.ComponentModel.TypeConverter.dll [External] 19:01:37:796 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Drawing.Primitives.dll [External] 19:01:37:884 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Runtime.Serialization.Formatters.dll [External] 19:01:37:991 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Resources.Writer.dll [External] 19:01:38:059 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Xml.XDocument.dll [External] 19:01:38:188 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Private.Xml.Linq.dll [External] 19:01:38:254 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Microsoft.Maui.dll [External] 19:01:38:316 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Microsoft.Maui.Essentials.dll [External] 19:01:38:411 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Console.dll [External] 19:01:38:477 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Microsoft.Extensions.Logging.Abstractions.dll [External] 19:01:38:557 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Microsoft.Extensions.DependencyInjection.Abstractions.dll [External] 19:01:38:671 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Microsoft.Extensions.Configuration.Abstractions.dll [External] 19:01:38:769 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Microsoft.Extensions.Primitives.dll [External] 19:01:38:886 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Microsoft.Extensions.Configuration.dll [External] 19:01:38:961 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Microsoft.Extensions.DependencyInjection.dll [External] 19:01:39:118 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Microsoft.Extensions.Logging.dll [External] 19:01:39:259 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Microsoft.Extensions.Options.dll [External] 19:01:39:417 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.ComponentModel.Annotations.dll [External] 19:01:39:552 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Sentry.Maui.dll [External] 19:01:39:693 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Microsoft.Extensions.Configuration.Binder.dll [External] 19:01:39:857 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Sentry.dll [External] 19:01:39:921 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Sentry.Bindings.Cocoa.dll [External] 19:01:39:987 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Diagnostics.StackTrace.dll [External] 19:01:40:120 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Text.Json.dll [External] 19:01:40:191 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Text.Encodings.Web.dll [External] 19:01:40:324 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Runtime.Serialization.Primitives.dll [External] 19:01:40:407 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.IO.FileSystem.DriveInfo.dll [External] 19:01:40:534 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Net.Requests.dll [External] 19:01:40:619 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Net.WebHeaderCollection.dll [External] 19:01:40:682 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Net.ServicePoint.dll [External] 19:01:40:789 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Sentry.Extensions.Logging.dll [External] 19:01:40:905 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Microsoft.Extensions.Http.dll [External] 19:01:41:014 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Microsoft.Extensions.Diagnostics.dll [External] 19:01:41:141 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Microsoft.Extensions.Diagnostics.Abstractions.dll [External] 19:01:41:213 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Microsoft.Extensions.Options.ConfigurationExtensions.dll [External] 19:01:41:277 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Microsoft.Extensions.Logging.Configuration.dll [External] 19:01:41:370 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Serilog.dll [External] 19:01:41:465 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/The49.Maui.BottomSheet.dll [External] 19:01:41:561 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/CommunityToolkit.Mvvm.dll [External] 19:01:41:676 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Runtime.CompilerServices.Unsafe.dll [External] 19:01:41:742 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/***IOS.dll [External] 19:01:41:835 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Mopups.dll [External] 19:01:41:927 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/AsyncAwaitBestPractices.dll [External] 19:01:42:050 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/netstandard.dll [External] 19:01:42:111 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.IO.Pipes.dll [External] 19:01:42:277 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Diagnostics.Process.dll [External] 19:01:42:353 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Diagnostics.FileVersionInfo.dll [External] 19:01:42:485 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.ComponentModel.EventBasedAsync.dll [External] 19:01:42:584 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Data.Common.dll [External] 19:01:42:715 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Xml.XmlSerializer.dll [External] 19:01:42:781 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Transactions.Local.dll [External] 19:01:42:839 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Diagnostics.Contracts.dll [External] 19:01:42:952 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Diagnostics.TextWriterTraceListener.dll [External] 19:01:43:077 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.IO.Compression.ZipFile.dll [External] 19:01:43:168 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.IO.FileSystem.Watcher.dll [External] 19:01:43:277 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.IO.IsolatedStorage.dll [External] 19:01:43:348 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Linq.Queryable.dll [External] 19:01:43:456 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Linq.Parallel.dll [External] 19:01:43:552 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Net.HttpListener.dll [External] 19:01:43:677 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Net.WebSockets.dll [External] 19:01:43:751 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Security.Principal.Windows.dll [External] 19:01:43:843 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Net.WebClient.dll [External] 19:01:43:911 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Web.HttpUtility.dll [External] 19:01:43:984 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Net.WebProxy.dll [External] 19:01:44:188 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Net.Mail.dll [External] 19:01:44:345 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Net.Ping.dll [External] 19:01:44:417 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Net.WebSockets.Client.dll [External] 19:01:44:567 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Reflection.DispatchProxy.dll [External] 19:01:44:729 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Runtime.CompilerServices.VisualC.dll [External] 19:01:44:799 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Runtime.Serialization.Xml.dll [External] 19:01:44:925 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Private.DataContractSerialization.dll [External] 19:01:44:989 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Runtime.Serialization.Json.dll [External] 19:01:45:104 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Threading.Overlapped.dll [External] 19:01:45:197 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Threading.Tasks.Parallel.dll [External] 19:01:45:322 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Xml.XPath.XDocument.dll [External] 19:01:45:384 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Xml.XPath.dll [External] 19:01:45:511 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/SkiaSharp.Extended.UI.dll [External] 19:01:45:586 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/SkiaSharp.dll [External] 19:01:45:720 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Runtime.InteropServices.RuntimeInformation.dll [External] 19:01:45:812 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/SkiaSharp.Skottie.dll [External] 19:01:45:877 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/SkiaSharp.SceneGraph.dll [External] 19:01:45:942 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/SkiaSharp.Views.Maui.Controls.dll [External] 19:01:46:030 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/SkiaSharp.Views.Maui.Core.dll [External] 19:01:46:095 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/SkiaSharp.Views.iOS.dll [External] 19:01:46:178 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Plugin.Fingerprint.dll [External] 19:01:46:356 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/CommunityToolkit.Maui.dll [External] 19:01:46:418 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/CommunityToolkit.Maui.Core.dll [External] 19:01:46:510 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Microsoft.Maui.Controls.Compatibility.dll [External] 19:01:46:605 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Serilog.Sinks.Debug.dll [External] 19:01:46:698 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Serilog.Sinks.File.dll [External] 19:01:46:769 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Serilog.Extensions.Hosting.dll [External] 19:01:46:907 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Microsoft.Extensions.Hosting.Abstractions.dll [External] 19:01:47:060 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Microsoft.Extensions.FileProviders.Abstractions.dll [External] 19:01:47:149 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Serilog.Extensions.Logging.dll [External] 19:01:47:274 Thread started: #2 19:01:47:388 Resolved pending breakpoint for '***.Program.Main(System.String[])' to C:\Users\Lucas\Source\Repos\TokenMAUI\***\Platforms\iOS\Program.cs:11 [0x00000]. 19:01:48:280 Loaded assembly: data-0x10d5ac000 [External] 19:01:48:624 Loaded assembly: data-0x10d5c4000 [External] 19:01:48:709 Loaded assembly: data-0x10d5d4000 [External] 19:01:49:938 INFO: Disposing input and output streams... 19:01:50:104 The app has been terminated. 19:01:50:104 INFO: Closing debug connection from device (USB) 19:01:50:143 INFO: Closing debug connection from remote debugger (TCP) 19:01:50:143 ERROR: An error occurred while writing to the debug stream. Details: Cannot access a disposed object. 19:01:50:143 Object name: 'UsbStream'. 19:01:50:143 INFO: Disposing input and output streams... 19:01:50:143 ERROR: An error occurred when writing to the output stream. Details: Unable to read data from the transport connection: Operation aborted. 19:01:50:143 INFO: Disposing console and debugger streams...Log 2: (27s)19:05:24:463 INFO: The app *** is already deployed on Lucas’s iPhone 19:05:25:929 INFO: Creating command connection... 19:05:25:930 INFO: Starting debugger connection to the app '***'. Debugger port: 53369, Device port: 10000 19:05:25:930 INFO: Launching... 19:05:25:930 INFO: Launching app '***' on device... 19:05:25:930 INFO: [iOS Debugger] Connecting to "Lucas’s iPhone" over USB on port 10000... 19:05:25:930 INFO: /Users/lucasvor/Library/Caches/Xamarin/XMA/SDKs/dotnet/packs/Microsoft.iOS.Sdk/17.2.8053/tools/bin/mlaunch --devname "Lucas’s iPhone" --killdev "/Users/lucasvor/Library/Caches/Xamarin/mtbs/builds/***/6e38320f77df20136c67871b7b69fa5e76e7eb9d69657ba781b8c0af84224325/bin/Debug/net8.0-ios/ios-arm64/device-builds/iphone11.8-17.5.1/***.app" --launchdev "/Users/lucasvor/Library/Caches/Xamarin/mtbs/builds/***/6e38320f77df20136c67871b7b69fa5e76e7eb9d69657ba781b8c0af84224325/bin/Debug/net8.0-ios/ios-arm64/device-builds/iphone11.8-17.5.1/***.app" -argument=-monodevelop-port -argument=10000 -argument=-connection-mode -argument=usb --setenv=__XAMARIN_DEBUG_PORT__=10000 --wait-for-unlock -v --sdkroot "/Applications/Xcode.app/Contents/Developer" -sdk 17.5 19:05:26:501 INFO: Using Xcode 15.2 found in /Applications/Xcode.app/Contents/Developer 19:05:26:516 INFO: Xamarin.Hosting: Device discovery started 19:05:26:718 INFO: Xamarin.Hosting: Device discovery event: Connected (00008310-000D34321428A01E) 19:05:26:718 INFO: Xamarin.Hosting: Device discovery event: GizmoPaired (00008310-000D34321428A01E) 19:05:26:718 INFO: Xamarin.Hosting: Device discovery event: Connected (00008020-000239013C0B002E) 19:05:26:748 INFO: Xamarin.Hosting: Connected to Lucas???s iPhone (00008020-000239013C0B002E) in 00:00:00.0050634 19:05:26:826 INFO: Xamarin.Hosting: Connected to Lucas???s Apple??Watch (00008310-000D34321428A01E) in 00:00:00.0075957 19:05:26:841 INFO: Xamarin.Hosting: Verbosity: 1 19:05:26:841 INFO: Xamarin.Hosting: Version: 699ed5eaf2 (refs/heads/main) 19:05:26:841 INFO: Xamarin.Hosting: Xcode: /Applications/Xcode.app 19:05:26:841 INFO: Xamarin.Hosting: Xcode Version: 15.2 19:05:26:841 INFO: Xamarin.Hosting: Xamarin.Hosting 19:05:27:350 INFO: xcrun devicectl -j /var/folders/xw/yr5q5mh53hl1zft5lbxjppb40000gn/T/tmpEL3eZg.tmp -v device info lockState --device "Lucas???s iPhone" 19:05:27:887 INFO: Xamarin.Hosting: Device discovery event: Connected (00008020-000239013C0B002E) 19:05:27:933 INFO: Xamarin.Hosting: Device discovery event: Connected (00008310-000D34321428A01E) 19:05:27:933 INFO: Xamarin.Hosting: Device discovery event: GizmoPaired (00008310-000D34321428A01E) 19:05:28:026 INFO: Xamarin.Hosting: Connected to Lucas???s iPhone (00008020-000239013C0B002E) in 00:00:00.0526202 19:05:28:850 INFO: Xamarin.Hosting: Connected to Lucas???s Apple??Watch (00008310-000D34321428A01E) in 00:00:00.0982390 19:05:28:926 INFO: Xamarin.Hosting: Could not locate the current host (B5EAA7D7-FB04-576C-93DE-592BCF3EF60E) within the list of allowed hosts (564DFEE5-D43E-F5D8-DDC0-8B85E21CB6C7, FA2C8A4E-8041-502B-98C6-BB5EAC80298D) for the device 'Lucas???s iPhone'. Please enable wireless debugging in Xcode in order to use this device wirelessly. 19:05:28:987 INFO: Xamarin.Hosting: Ignoring wireless connection to Lucas???s iPhone because wireless debugging is disabled for this device. 19:05:29:767 INFO: Current device lock state: 19:05:29:826 INFO: ? passcodeRequired: false 19:05:29:826 INFO: ? deviceIdentifier: 6789EDFE-2BBD-4F35-8611-F5D71DE16329 19:05:29:826 INFO: ? unlockedSinceBoot: true 19:05:29:826 INFO: Command Completed, took 2.374 seconds 19:05:29:826 INFO: Saving JSON output file to /var/folders/xw/yr5q5mh53hl1zft5lbxjppb40000gn/T/tmpEL3eZg.tmp 19:05:29:826 INFO: 2024-06-18 19:05:29.730-0300 Acquired tunnel connection to device. 19:05:29:826 INFO: Using verbose logging. 19:05:29:933 INFO: xcrun devicectl -j /var/folders/xw/yr5q5mh53hl1zft5lbxjppb40000gn/T/tmpn4w6mh.tmp -v device process launch --terminate-existing --device "Lucas???s iPhone" com.LucasApps.LOTRConverter17 --monodevelop-port 10000 --connection-mode usb 19:05:31:543 INFO: 2024-06-18 19:05:31.196-0300 Acquired tunnel connection to device. 19:05:31:563 INFO: Saving JSON output file to /var/folders/xw/yr5q5mh53hl1zft5lbxjppb40000gn/T/tmpn4w6mh.tmp 19:05:31:563 INFO: Command Completed, took 1.566 seconds 19:05:31:608 INFO: Using verbose logging. 19:05:31:623 INFO: Launched application with com.LucasApps.LOTRConverter17 bundle identifier. 19:05:31:623 INFO: 2024-06-18 19:05:31.329-0300 Acquired usage assertion. 19:05:31:623 INFO: The app 'com.LucasApps.LOTRConverter17' launched with pid 3342 19:05:31:623 INFO: 2024-06-18 19:05:31.208-0300 Enabling developer disk image services. 19:05:31:668 INFO: [iOS Debugger] Connecting to "Lucas’s iPhone" over USB on port 10000... 19:05:31:716 INFO: [iOS Debugger] Connecting to "Lucas’s iPhone" over USB on port 10000... 19:05:31:716 INFO: [iOS Debugger] Connected to "Lucas’s iPhone" over USB on port 10000. 19:05:31:731 INFO: Waiting for the debugger connection signal... 19:05:31:731 INFO: Connecting to remote debugger on port 53369... 19:05:31:731 INFO: [iOS Debugger] Connected to "Lucas’s iPhone" over USB on port 10000. 19:05:31:731 INFO: Connecting to debug stream from device... 19:05:31:731 INFO: Connecting to debug console stream... 19:05:31:731 INFO: [iOS Debugger] Connected to "Lucas’s iPhone" over USB on port 10000. 19:05:31:731 INFO: Debugger connection signal received 19:05:31:731 INFO: Debugger connection completed 19:05:31:747 INFO: Connecting to debug stream from remote debugger... 19:05:32:139 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Private.CoreLib.dll [External] 19:05:32:201 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Microsoft.iOS.dll [External] 19:05:32:319 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Runtime.dll [External] 19:05:32:380 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Collections.dll [External] 19:05:32:416 INFO: The application has been launched 19:05:32:416 INFO: 19:05:32:509 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Runtime.InteropServices.dll [External] 19:05:32:651 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Threading.Thread.dll [External] 19:05:32:729 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Threading.dll [External] 19:05:32:892 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/***.dll 19:05:32:986 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Private.Uri.dll [External] 19:05:33:052 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Microsoft.Maui.Controls.Xaml.dll [External] 19:05:33:185 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Microsoft.Maui.Controls.dll [External] 19:05:33:246 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Collections.Concurrent.dll [External] 19:05:33:341 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Microsoft.Maui.Graphics.dll [External] 19:05:33:506 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Numerics.Vectors.dll [External] 19:05:33:638 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.ObjectModel.dll [External] 19:05:33:928 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Xml.ReaderWriter.dll [External] 19:05:34:087 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Private.Xml.dll [External] 19:05:34:237 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Memory.dll [External] 19:05:34:368 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Diagnostics.TraceSource.dll [External] 19:05:34:442 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Collections.NonGeneric.dll [External] 19:05:34:508 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Collections.Specialized.dll [External] 19:05:34:662 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.ComponentModel.Primitives.dll [External] 19:05:34:754 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.ComponentModel.dll [External] 19:05:34:818 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Text.RegularExpressions.dll [External] 19:05:34:885 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Reflection.Emit.ILGeneration.dll [External] 19:05:35:137 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Reflection.Emit.Lightweight.dll [External] 19:05:35:257 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Reflection.Primitives.dll [External] 19:05:35:315 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Net.Primitives.dll [External] 19:05:35:493 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Diagnostics.Tracing.dll [External] 19:05:35:556 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Runtime.Intrinsics.dll [External] 19:05:35:676 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Microsoft.Win32.Primitives.dll [External] 19:05:35:742 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Net.Http.dll [External] 19:05:35:889 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Net.Security.dll [External] 19:05:35:955 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Security.Cryptography.dll [External] 19:05:36:021 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Formats.Asn1.dll [External] 19:05:36:136 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Text.Encoding.Extensions.dll [External] 19:05:36:262 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Runtime.Numerics.dll [External] 19:05:36:427 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Security.Claims.dll [External] 19:05:36:480 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Net.Sockets.dll [External] 19:05:36:618 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Net.NameResolution.dll [External] 19:05:36:681 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Diagnostics.DiagnosticSource.dll [External] 19:05:36:746 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Threading.ThreadPool.dll [External] 19:05:36:869 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Linq.dll [External] 19:05:36:981 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Net.Quic.dll [External] 19:05:37:054 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.IO.Compression.dll [External] 19:05:37:137 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.IO.Compression.Brotli.dll [External] 19:05:37:266 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Threading.Channels.dll [External] 19:05:37:327 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Net.NetworkInformation.dll [External] 19:05:37:424 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Reflection.Emit.dll [External] 19:05:37:561 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Reflection.Metadata.dll [External] 19:05:37:655 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Collections.Immutable.dll [External] 19:05:37:750 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.IO.MemoryMappedFiles.dll [External] 19:05:37:922 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Runtime.Loader.dll [External] 19:05:37:971 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Linq.Expressions.dll [External] 19:05:38:057 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.ComponentModel.TypeConverter.dll [External] 19:05:38:133 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Drawing.Primitives.dll [External] 19:05:38:288 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Runtime.Serialization.Formatters.dll [External] 19:05:38:434 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Resources.Writer.dll [External] 19:05:38:498 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Xml.XDocument.dll [External] 19:05:38:652 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Private.Xml.Linq.dll [External] 19:05:38:720 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Microsoft.Maui.dll [External] 19:05:38:820 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Microsoft.Maui.Essentials.dll [External] 19:05:38:943 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Console.dll [External] 19:05:39:052 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Microsoft.Extensions.Logging.Abstractions.dll [External] 19:05:39:180 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Microsoft.Extensions.DependencyInjection.Abstractions.dll [External] 19:05:39:245 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Microsoft.Extensions.Configuration.Abstractions.dll [External] 19:05:39:321 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Microsoft.Extensions.Primitives.dll [External] 19:05:39:403 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Microsoft.Extensions.Configuration.dll [External] 19:05:39:472 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Microsoft.Extensions.DependencyInjection.dll [External] 19:05:39:544 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Microsoft.Extensions.Logging.dll [External] 19:05:39:700 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Microsoft.Extensions.Options.dll [External] 19:05:39:773 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.ComponentModel.Annotations.dll [External] 19:05:39:858 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Sentry.Maui.dll [External] 19:05:39:938 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Microsoft.Extensions.Configuration.Binder.dll [External] 19:05:40:143 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Sentry.dll [External] 19:05:40:252 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Sentry.Bindings.Cocoa.dll [External] 19:05:40:326 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Diagnostics.StackTrace.dll [External] 19:05:40:427 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Text.Json.dll [External] 19:05:40:564 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Text.Encodings.Web.dll [External] 19:05:40:654 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Runtime.Serialization.Primitives.dll [External] 19:05:40:767 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.IO.FileSystem.DriveInfo.dll [External] 19:05:40:848 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Net.Requests.dll [External] 19:05:40:942 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Net.WebHeaderCollection.dll [External] 19:05:41:005 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Net.ServicePoint.dll [External] 19:05:41:133 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Sentry.Extensions.Logging.dll [External] 19:05:41:196 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Microsoft.Extensions.Http.dll [External] 19:05:41:330 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Microsoft.Extensions.Diagnostics.dll [External] 19:05:41:412 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Microsoft.Extensions.Diagnostics.Abstractions.dll [External] 19:05:41:479 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Microsoft.Extensions.Options.ConfigurationExtensions.dll [External] 19:05:41:544 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Microsoft.Extensions.Logging.Configuration.dll [External] 19:05:41:648 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Serilog.dll [External] 19:05:41:713 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/The49.Maui.BottomSheet.dll [External] 19:05:41:864 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/CommunityToolkit.Mvvm.dll [External] 19:05:41:932 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Runtime.CompilerServices.Unsafe.dll [External] 19:05:42:029 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/***IOS.dll [External] 19:05:42:120 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Mopups.dll [External] 19:05:42:234 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/AsyncAwaitBestPractices.dll [External] 19:05:42:347 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/netstandard.dll [External] 19:05:42:439 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.IO.Pipes.dll [External] 19:05:42:567 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Diagnostics.Process.dll [External] 19:05:42:662 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Diagnostics.FileVersionInfo.dll [External] 19:05:42:790 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.ComponentModel.EventBasedAsync.dll [External] 19:05:42:909 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Data.Common.dll [External] 19:05:43:017 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Xml.XmlSerializer.dll [External] 19:05:43:082 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Transactions.Local.dll [External] 19:05:43:229 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Diagnostics.Contracts.dll [External] 19:05:43:328 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Diagnostics.TextWriterTraceListener.dll [External] 19:05:43:496 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.IO.Compression.ZipFile.dll [External] 19:05:43:596 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.IO.FileSystem.Watcher.dll [External] 19:05:43:701 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.IO.IsolatedStorage.dll [External] 19:05:43:833 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Linq.Queryable.dll [External] 19:05:43:953 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Linq.Parallel.dll [External] 19:05:44:056 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Net.HttpListener.dll [External] 19:05:44:190 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Net.WebSockets.dll [External] 19:05:44:257 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Security.Principal.Windows.dll [External] 19:05:44:321 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Net.WebClient.dll [External] 19:05:44:414 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Web.HttpUtility.dll [External] 19:05:44:497 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Net.WebProxy.dll [External] 19:05:44:568 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Net.Mail.dll [External] 19:05:44:652 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Net.Ping.dll [External] 19:05:44:718 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Net.WebSockets.Client.dll [External] 19:05:44:784 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Reflection.DispatchProxy.dll [External] 19:05:44:853 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Runtime.CompilerServices.VisualC.dll [External] 19:05:44:919 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Runtime.Serialization.Xml.dll [External] 19:05:45:035 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Private.DataContractSerialization.dll [External] 19:05:45:094 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Runtime.Serialization.Json.dll [External] 19:05:45:186 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Threading.Overlapped.dll [External] 19:05:45:311 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Threading.Tasks.Parallel.dll [External] 19:05:45:402 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Xml.XPath.XDocument.dll [External] 19:05:45:565 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Xml.XPath.dll [External] 19:05:45:664 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/SkiaSharp.Extended.UI.dll [External] 19:05:45:853 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/SkiaSharp.dll [External] 19:05:45:985 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/System.Runtime.InteropServices.RuntimeInformation.dll [External] 19:05:46:077 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/SkiaSharp.Skottie.dll [External] 19:05:46:175 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/SkiaSharp.SceneGraph.dll [External] 19:05:46:302 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/SkiaSharp.Views.Maui.Controls.dll [External] 19:05:46:367 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/SkiaSharp.Views.Maui.Core.dll [External] 19:05:46:497 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/SkiaSharp.Views.iOS.dll [External] 19:05:46:572 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Plugin.Fingerprint.dll [External] 19:05:46:737 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/CommunityToolkit.Maui.dll [External] 19:05:46:815 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/CommunityToolkit.Maui.Core.dll [External] 19:05:46:927 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Microsoft.Maui.Controls.Compatibility.dll [External] 19:05:47:030 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Serilog.Sinks.Debug.dll [External] 19:05:47:130 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Serilog.Sinks.File.dll [External] 19:05:47:256 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Serilog.Extensions.Hosting.dll [External] 19:05:47:353 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Microsoft.Extensions.Hosting.Abstractions.dll [External] 19:05:47:456 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Microsoft.Extensions.FileProviders.Abstractions.dll [External] 19:05:47:584 Loaded assembly: /private/var/containers/Bundle/Application/CD781628-CE03-4B9D-A319-4DA34BA8A4D7/***.app/Serilog.Extensions.Logging.dll [External] 19:05:47:692 Thread started: #2 19:05:47:814 Resolved pending breakpoint for '***.Program.Main(System.String[])' to C:\Users\Lucas\Source\Repos\TokenMAUI\***\Platforms\iOS\Program.cs:11 [0x00000]. 19:05:48:715 Loaded assembly: data-0x10bb10000 [External] 19:05:49:095 Loaded assembly: data-0x10bb28000 [External] 19:05:49:213 Loaded assembly: data-0x10bb38000 [External] 19:05:51:926 The app has been terminated. 19:05:51:926 INFO: Disposing input and output streams... 19:05:51:926 INFO: Closing debug connection from device (USB) 19:05:51:928 INFO: Disposing input and output streams... 19:05:51:928 INFO: Disposing console and debugger streams... 19:05:51:988 ERROR: An error occurred while writing to the debug stream. Details: Cannot access a disposed object. 19:05:51:988 Object name: 'UsbStream'. 19:05:51:988 ERROR: An error occurred when writing to the output stream. Details: Unable to read data from the transport connection: Operation aborted. 19:05:51:988 INFO: Closing debug connection from remote debugger (TCP)Attempts with UseInterpreter = False Log 1: (18s)19:36:49:486 INFO: 19:36:53:880 INFO: Launching... 19:36:53:942 INFO: [iOS Debugger] Connecting to "Lucas’s iPhone" over USB on port 10000... 19:36:53:943 INFO: /Users/lucasvor/Library/Caches/Xamarin/XMA/SDKs/dotnet/packs/Microsoft.iOS.Sdk/17.2.8053/tools/bin/mlaunch --devname "Lucas’s iPhone" --killdev "/Users/lucasvor/Library/Caches/Xamarin/mtbs/builds/***/6e38320f77df20136c67871b7b69fa5e76e7eb9d69657ba781b8c0af84224325/bin/Debug/net8.0-ios/ios-arm64/device-builds/iphone11.8-17.5.1/***.app" --launchdev "/Users/lucasvor/Library/Caches/Xamarin/mtbs/builds/***/6e38320f77df20136c67871b7b69fa5e76e7eb9d69657ba781b8c0af84224325/bin/Debug/net8.0-ios/ios-arm64/device-builds/iphone11.8-17.5.1/***.app" -argument=-monodevelop-port -argument=10000 -argument=-connection-mode -argument=usb --setenv=__XAMARIN_DEBUG_PORT__=10000 --wait-for-unlock -v --sdkroot "/Applications/Xcode.app/Contents/Developer" -sdk 17.5 19:36:53:943 INFO: Creating command connection... 19:36:53:943 INFO: Launching app '***' on device... 19:36:53:944 INFO: Starting debugger connection to the app '***'. Debugger port: 54510, Device port: 10000 19:36:54:454 INFO: Using Xcode 15.2 found in /Applications/Xcode.app/Contents/Developer 19:36:54:531 INFO: Xamarin.Hosting: Device discovery started 19:36:56:321 INFO: Xamarin.Hosting: Device discovery event: GizmoPaired (00008310-000D34321428A01E) 19:36:56:321 INFO: Xamarin.Hosting: Device discovery event: Connected (00008020-000239013C0B002E) 19:36:56:321 INFO: Xamarin.Hosting: Device discovery event: Connected (00008310-000D34321428A01E) 19:36:56:445 INFO: Xamarin.Hosting: Connected to Lucas???s iPhone (00008020-000239013C0B002E) in 00:00:00.0406126 19:36:56:460 INFO: Xamarin.Hosting: Device discovery event: Connected (00008310-000D34321428A01E) 19:36:56:460 INFO: Xamarin.Hosting: Connected to Lucas???s iPhone (00008020-000239013C0B002E) in 00:00:00.0024783 19:36:56:522 INFO: Xamarin.Hosting: Device discovery event: GizmoPaired (00008310-000D34321428A01E) 19:36:56:522 INFO: Xamarin.Hosting: Device discovery event: Connected (00008020-000239013C0B002E) 19:36:56:631 INFO: Xamarin.Hosting: Connected to Lucas???s Apple??Watch (00008310-000D34321428A01E) in 00:00:00.0029025 19:36:57:324 INFO: Xamarin.Hosting: Connected to Lucas???s Apple??Watch (00008310-000D34321428A01E) in 00:00:00.0418579 19:36:57:431 INFO: Xamarin.Hosting: Could not locate the current host (B5EAA7D7-FB04-576C-93DE-592BCF3EF60E) within the list of allowed hosts (564DFEE5-D43E-F5D8-DDC0-8B85E21CB6C7, FA2C8A4E-8041-502B-98C6-BB5EAC80298D) for the device 'Lucas???s iPhone'. Please enable wireless debugging in Xcode in order to use this device wirelessly. 19:36:57:492 INFO: Xamarin.Hosting: Ignoring wireless connection to Lucas???s iPhone because wireless debugging is disabled for this device. 19:36:57:694 INFO: Xamarin.Hosting: Xcode: /Applications/Xcode.app 19:36:57:694 INFO: Xamarin.Hosting: Version: 699ed5eaf2 (refs/heads/main) 19:36:57:694 INFO: Xamarin.Hosting: Xamarin.Hosting 19:36:57:709 INFO: Xamarin.Hosting: Verbosity: 1 19:36:57:709 INFO: Xamarin.Hosting: Xcode Version: 15.2 19:36:58:257 INFO: xcrun devicectl -j /var/folders/xw/yr5q5mh53hl1zft5lbxjppb40000gn/T/tmpLOQayK.tmp -v device info lockState --device "Lucas???s iPhone" 19:37:00:560 INFO: ? deviceIdentifier: 6789EDFE-2BBD-4F35-8611-F5D71DE16329 19:37:00:560 INFO: Command Completed, took 2.273 seconds 19:37:00:623 INFO: ? unlockedSinceBoot: true 19:37:00:623 INFO: Using verbose logging. 19:37:00:623 INFO: Current device lock state: 19:37:00:623 INFO: ? passcodeRequired: false 19:37:00:623 INFO: 2024-06-18 19:36:59.743-0300 Acquired tunnel connection to device. 19:37:00:623 INFO: Saving JSON output file to /var/folders/xw/yr5q5mh53hl1zft5lbxjppb40000gn/T/tmpLOQayK.tmp 19:37:00:623 INFO: 2024-06-18 19:36:59.745-0300 Acquired usage assertion. 19:37:00:700 INFO: xcrun devicectl -j /var/folders/xw/yr5q5mh53hl1zft5lbxjppb40000gn/T/tmpvyFOFD.tmp -v device process launch --terminate-existing --device "Lucas???s iPhone" com.LucasApps.LOTRConverter17 --monodevelop-port 10000 --connection-mode usb 19:37:02:208 INFO: Command Completed, took 1.418 seconds 19:37:02:208 INFO: 2024-06-18 19:37:01.254-0300 Acquired usage assertion. 19:37:02:208 INFO: Launched application with com.LucasApps.LOTRConverter17 bundle identifier. 19:37:02:208 INFO: Using verbose logging. 19:37:02:208 INFO: 2024-06-18 19:37:01.160-0300 Enabling developer disk image services. 19:37:02:208 INFO: 2024-06-18 19:37:01.147-0300 Acquired tunnel connection to device. 19:37:02:238 INFO: The app 'com.LucasApps.LOTRConverter17' launched with pid 3426 19:37:02:238 INFO: Saving JSON output file to /var/folders/xw/yr5q5mh53hl1zft5lbxjppb40000gn/T/tmpvyFOFD.tmp 19:37:02:424 INFO: [iOS Debugger] Connecting to "Lucas’s iPhone" over USB on port 10000... 19:37:02:438 INFO: [iOS Debugger] Connected to "Lucas’s iPhone" over USB on port 10000. 19:37:02:453 INFO: Debugger connection completed 19:37:02:470 INFO: Connecting to debug stream from remote debugger... 19:37:02:485 INFO: [iOS Debugger] Connected to "Lucas’s iPhone" over USB on port 10000. 19:37:02:485 INFO: [iOS Debugger] Connected to "Lucas’s iPhone" over USB on port 10000. 19:37:02:485 INFO: [iOS Debugger] Connecting to "Lucas’s iPhone" over USB on port 10000... 19:37:02:517 INFO: Debugger connection signal received 19:37:02:517 INFO: Waiting for the debugger connection signal... 19:37:02:532 INFO: Connecting to debug stream from device... 19:37:02:533 INFO: Connecting to debug console stream... 19:37:02:533 INFO: Connecting to remote debugger on port 54510... 19:37:02:679 INFO: The application has been launched 19:37:02:735 INFO: 19:37:03:371 Resolved pending breakpoint for '***.Program.Main(System.String[])' to C:\Users\Lucas\Source\Repos\TokenMAUI\***\Platforms\iOS\Program.cs:11 [0x00000]. 19:37:03:475 Loaded assembly: /private/var/containers/Bundle/Application/C3B41043-4B58-4244-B0A1-48C749D813F4/***.app/System.Private.CoreLib.dll [External] 19:37:03:708 Loaded assembly: /private/var/containers/Bundle/Application/C3B41043-4B58-4244-B0A1-48C749D813F4/***.app/System.Runtime.InteropServices.dll [External] 19:37:03:803 Loaded assembly: /private/var/containers/Bundle/Application/C3B41043-4B58-4244-B0A1-48C749D813F4/***.app/System.Numerics.Vectors.dll [External] 19:37:03:917 Loaded assembly: /private/var/containers/Bundle/Application/C3B41043-4B58-4244-B0A1-48C749D813F4/***.app/System.Xml.ReaderWriter.dll [External] 19:37:03:994 Loaded assembly: /private/var/containers/Bundle/Application/C3B41043-4B58-4244-B0A1-48C749D813F4/***.app/System.Threading.Thread.dll [External] 19:37:04:055 Loaded assembly: /private/var/containers/Bundle/Application/C3B41043-4B58-4244-B0A1-48C749D813F4/***.app/System.Threading.dll [External] 19:37:04:116 Loaded assembly: /private/var/containers/Bundle/Application/C3B41043-4B58-4244-B0A1-48C749D813F4/***.app/System.Runtime.Loader.dll [External] 19:37:04:223 Loaded assembly: /private/var/containers/Bundle/Application/C3B41043-4B58-4244-B0A1-48C749D813F4/***.app/System.Runtime.Serialization.Primitives.dll [External] 19:37:04:287 Loaded assembly: /private/var/containers/Bundle/Application/C3B41043-4B58-4244-B0A1-48C749D813F4/***.app/netstandard.dll [External] 19:37:04:494 Loaded assembly: /private/var/containers/Bundle/Application/C3B41043-4B58-4244-B0A1-48C749D813F4/***.app/SkiaSharp.SceneGraph.dll [External] 19:37:04:566 Thread started: #2 19:37:04:629 Loaded assembly: /private/var/containers/Bundle/Application/C3B41043-4B58-4244-B0A1-48C749D813F4/***.app/System.Text.Encoding.Extensions.dll [External] 19:37:07:735 Resolved pending breakpoint at 'AppDelegate.cs:12,1' to bool ***.AppDelegate.FinishedLaunching (UIKit.UIApplication application, Foundation.NSDictionary launchOptions) [0x00000].Log 2: (18s)19:40:19:583 INFO: The app *** is already deployed on Lucas’s iPhone 19:40:23:579 INFO: Creating command connection... 19:40:23:579 INFO: Starting debugger connection to the app '***'. Debugger port: 51201, Device port: 10000 19:40:23:579 INFO: [iOS Debugger] Connecting to "Lucas’s iPhone" over USB on port 10000... 19:40:23:634 INFO: Launching... 19:40:23:634 INFO: /Users/lucasvor/Library/Caches/Xamarin/XMA/SDKs/dotnet/packs/Microsoft.iOS.Sdk/17.2.8053/tools/bin/mlaunch --devname "Lucas’s iPhone" --killdev "/Users/lucasvor/Library/Caches/Xamarin/mtbs/builds/***/6e38320f77df20136c67871b7b69fa5e76e7eb9d69657ba781b8c0af84224325/bin/Debug/net8.0-ios/ios-arm64/device-builds/iphone11.8-17.5.1/***.app" --launchdev "/Users/lucasvor/Library/Caches/Xamarin/mtbs/builds/***/6e38320f77df20136c67871b7b69fa5e76e7eb9d69657ba781b8c0af84224325/bin/Debug/net8.0-ios/ios-arm64/device-builds/iphone11.8-17.5.1/***.app" -argument=-monodevelop-port -argument=10000 -argument=-connection-mode -argument=usb --setenv=__XAMARIN_DEBUG_PORT__=10000 --wait-for-unlock -v --sdkroot "/Applications/Xcode.app/Contents/Developer" -sdk 17.5 19:40:23:634 INFO: Launching app '***' on device... 19:40:24:177 INFO: Using Xcode 15.2 found in /Applications/Xcode.app/Contents/Developer 19:40:24:177 INFO: Xamarin.Hosting: Device discovery started 19:40:26:039 INFO: Xamarin.Hosting: Device discovery event: Connected (00008020-000239013C0B002E) 19:40:26:069 INFO: Xamarin.Hosting: Device discovery event: GizmoPaired (00008310-000D34321428A01E) 19:40:26:085 INFO: Xamarin.Hosting: Device discovery event: Connected (00008310-000D34321428A01E) 19:40:26:131 INFO: Xamarin.Hosting: Connected to Lucas???s iPhone (00008020-000239013C0B002E) in 00:00:00.0703455 19:40:26:194 INFO: Xamarin.Hosting: Device discovery event: Connected (00008310-000D34321428A01E) 19:40:26:194 INFO: Xamarin.Hosting: Connected to Lucas???s iPhone (00008020-000239013C0B002E) in 00:00:00.0013685 19:40:26:194 INFO: Xamarin.Hosting: Device discovery event: Connected (00008020-000239013C0B002E) 19:40:26:194 INFO: Xamarin.Hosting: Device discovery event: GizmoPaired (00008310-000D34321428A01E) 19:40:26:303 INFO: Xamarin.Hosting: Connected to Lucas???s Apple??Watch (00008310-000D34321428A01E) in 00:00:00.0023833 19:40:27:111 INFO: Xamarin.Hosting: Could not locate the current host (B5EAA7D7-FB04-576C-93DE-592BCF3EF60E) within the list of allowed hosts (564DFEE5-D43E-F5D8-DDC0-8B85E21CB6C7, FA2C8A4E-8041-502B-98C6-BB5EAC80298D) for the device 'Lucas???s iPhone'. Please enable wireless debugging in Xcode in order to use this device wirelessly. 19:40:27:142 INFO: Xamarin.Hosting: Connected to Lucas???s Apple??Watch (00008310-000D34321428A01E) in 00:00:00.0365967 19:40:27:188 INFO: Xamarin.Hosting: Ignoring wireless connection to Lucas???s iPhone because wireless debugging is disabled for this device. 19:40:27:343 INFO: Xamarin.Hosting: Xcode: /Applications/Xcode.app 19:40:27:343 INFO: Xamarin.Hosting: Version: 699ed5eaf2 (refs/heads/main) 19:40:27:343 INFO: Xamarin.Hosting: Xamarin.Hosting 19:40:27:359 INFO: Xamarin.Hosting: Xcode Version: 15.2 19:40:27:359 INFO: Xamarin.Hosting: Verbosity: 1 19:40:27:874 INFO: xcrun devicectl -j /var/folders/xw/yr5q5mh53hl1zft5lbxjppb40000gn/T/tmp6jmubZ.tmp -v device info lockState --device "Lucas???s iPhone" 19:40:30:493 INFO: 2024-06-18 19:40:29.688-0300 Acquired usage assertion. 19:40:30:493 INFO: ? deviceIdentifier: 6789EDFE-2BBD-4F35-8611-F5D71DE16329 19:40:30:494 INFO: Current device lock state: 19:40:30:494 INFO: Command Completed, took 2.581 seconds 19:40:30:558 INFO: 2024-06-18 19:40:29.686-0300 Acquired tunnel connection to device. 19:40:30:558 INFO: ? unlockedSinceBoot: true 19:40:30:558 INFO: Saving JSON output file to /var/folders/xw/yr5q5mh53hl1zft5lbxjppb40000gn/T/tmp6jmubZ.tmp 19:40:30:558 INFO: ? passcodeRequired: false 19:40:30:558 INFO: Using verbose logging. 19:40:30:666 INFO: xcrun devicectl -j /var/folders/xw/yr5q5mh53hl1zft5lbxjppb40000gn/T/tmpblKr2D.tmp -v device process launch --terminate-existing --device "Lucas???s iPhone" com.LucasApps.LOTRConverter17 --monodevelop-port 10000 --connection-mode usb 19:40:32:076 INFO: 2024-06-18 19:40:31.086-0300 Acquired tunnel connection to device. 19:40:32:078 INFO: 2024-06-18 19:40:31.097-0300 Enabling developer disk image services. 19:40:32:080 INFO: Saving JSON output file to /var/folders/xw/yr5q5mh53hl1zft5lbxjppb40000gn/T/tmpblKr2D.tmp 19:40:32:141 INFO: Using verbose logging. 19:40:32:141 INFO: Command Completed, took 1.392 seconds 19:40:32:141 INFO: 2024-06-18 19:40:31.194-0300 Acquired usage assertion. 19:40:32:141 INFO: Launched application with com.LucasApps.LOTRConverter17 bundle identifier. 19:40:32:157 INFO: The app 'com.LucasApps.LOTRConverter17' launched with pid 3436 19:40:32:172 INFO: [iOS Debugger] Connected to "Lucas’s iPhone" over USB on port 10000. 19:40:32:203 INFO: [iOS Debugger] Connected to "Lucas’s iPhone" over USB on port 10000. 19:40:32:203 INFO: Debugger connection signal received 19:40:32:203 INFO: Connecting to debug console stream... 19:40:32:203 INFO: Waiting for the debugger connection signal... 19:40:32:203 INFO: Debugger connection completed 19:40:32:203 INFO: [iOS Debugger] Connecting to "Lucas’s iPhone" over USB on port 10000... 19:40:32:203 INFO: Connecting to debug stream from device... 19:40:32:203 INFO: Connecting to debug stream from remote debugger... 19:40:32:203 INFO: [iOS Debugger] Connecting to "Lucas’s iPhone" over USB on port 10000... 19:40:32:203 INFO: Connecting to remote debugger on port 51201... 19:40:32:203 INFO: [iOS Debugger] Connected to "Lucas’s iPhone" over USB on port 10000. 19:40:32:460 INFO: 19:40:32:460 INFO: The application has been launched 19:40:32:865 Resolved pending breakpoint for '***.Program.Main(System.String[])' to C:\Users\Lucas\Source\Repos\TokenMAUI\***\Platforms\iOS\Program.cs:11 [0x00000]. 19:40:33:009 Loaded assembly: /private/var/containers/Bundle/Application/C3B41043-4B58-4244-B0A1-48C749D813F4/***.app/System.Private.CoreLib.dll [External] 19:40:33:201 Loaded assembly: /private/var/containers/Bundle/Application/C3B41043-4B58-4244-B0A1-48C749D813F4/***.app/System.Runtime.InteropServices.dll [External] 19:40:33:297 Loaded assembly: /private/var/containers/Bundle/Application/C3B41043-4B58-4244-B0A1-48C749D813F4/***.app/System.Numerics.Vectors.dll [External] 19:40:33:532 Loaded assembly: /private/var/containers/Bundle/Application/C3B41043-4B58-4244-B0A1-48C749D813F4/***.app/System.Xml.ReaderWriter.dll [External] 19:40:33:632 Loaded assembly: /private/var/containers/Bundle/Application/C3B41043-4B58-4244-B0A1-48C749D813F4/***.app/System.Threading.Thread.dll [External] 19:40:33:759 Loaded assembly: /private/var/containers/Bundle/Application/C3B41043-4B58-4244-B0A1-48C749D813F4/***.app/System.Threading.dll [External] 19:40:33:947 Loaded assembly: /private/var/containers/Bundle/Application/C3B41043-4B58-4244-B0A1-48C749D813F4/***.app/System.Runtime.Loader.dll [External] 19:40:34:011 Loaded assembly: /private/var/containers/Bundle/Application/C3B41043-4B58-4244-B0A1-48C749D813F4/***.app/System.Runtime.Serialization.Primitives.dll [External] 19:40:34:113 Loaded assembly: /private/var/containers/Bundle/Application/C3B41043-4B58-4244-B0A1-48C749D813F4/***.app/netstandard.dll [External] 19:40:34:288 Loaded assembly: /private/var/containers/Bundle/Application/C3B41043-4B58-4244-B0A1-48C749D813F4/***.app/SkiaSharp.SceneGraph.dll [External] 19:40:34:343 Thread started: #2 19:40:34:404 Loaded assembly: /private/var/containers/Bundle/Application/C3B41043-4B58-4244-B0A1-48C749D813F4/***.app/System.Text.Encoding.Extensions.dll [External] 19:40:37:713 Resolved pending breakpoint at 'AppDelegate.cs:12,1' to bool ***.AppDelegate.FinishedLaunching (UIKit.UIApplication application, Foundation.NSDictionary launchOptions) [0x00000].Using Rider on MACMost of the time, using Rider on the Mac works. Log 1: (18s)Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Private.CoreLib.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Private.CoreLib.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Microsoft.iOS.dll Symbols for module /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Microsoft.iOS.dll loaded Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Runtime.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Runtime.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Collections.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Collections.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Runtime.InteropServices.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Runtime.InteropServices.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Threading.Thread.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Threading.Thread.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Threading.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Threading.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/***.dll Symbols for module /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/***.dll loaded Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Private.Uri.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Private.Uri.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Microsoft.Maui.Controls.Xaml.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Microsoft.Maui.Controls.Xaml.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Microsoft.Maui.Controls.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Microsoft.Maui.Controls.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Collections.Concurrent.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Collections.Concurrent.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Microsoft.Maui.Graphics.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Microsoft.Maui.Graphics.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Numerics.Vectors.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Numerics.Vectors.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.ObjectModel.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.ObjectModel.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Xml.ReaderWriter.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Xml.ReaderWriter.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Private.Xml.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Private.Xml.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Memory.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Memory.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Diagnostics.TraceSource.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Diagnostics.TraceSource.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Collections.NonGeneric.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Collections.NonGeneric.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Collections.Specialized.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Collections.Specialized.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.ComponentModel.Primitives.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.ComponentModel.Primitives.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.ComponentModel.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.ComponentModel.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Text.RegularExpressions.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Text.RegularExpressions.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Reflection.Emit.ILGeneration.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Reflection.Emit.ILGeneration.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Reflection.Emit.Lightweight.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Reflection.Emit.Lightweight.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Reflection.Primitives.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Reflection.Primitives.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Net.Primitives.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Net.Primitives.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Diagnostics.Tracing.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Diagnostics.Tracing.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Runtime.Intrinsics.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Runtime.Intrinsics.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Microsoft.Win32.Primitives.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Microsoft.Win32.Primitives.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Net.Http.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Net.Http.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Net.Security.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Net.Security.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Security.Cryptography.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Security.Cryptography.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Formats.Asn1.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Formats.Asn1.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Text.Encoding.Extensions.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Text.Encoding.Extensions.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Runtime.Numerics.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Runtime.Numerics.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Security.Claims.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Security.Claims.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Net.Sockets.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Net.Sockets.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Net.NameResolution.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Net.NameResolution.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Diagnostics.DiagnosticSource.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Diagnostics.DiagnosticSource.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Threading.ThreadPool.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Threading.ThreadPool.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Linq.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Linq.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Net.Quic.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Net.Quic.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.IO.Compression.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.IO.Compression.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.IO.Compression.Brotli.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.IO.Compression.Brotli.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Threading.Channels.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Threading.Channels.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Net.NetworkInformation.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Net.NetworkInformation.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Reflection.Emit.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Reflection.Emit.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Reflection.Metadata.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Reflection.Metadata.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Collections.Immutable.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Collections.Immutable.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.IO.MemoryMappedFiles.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.IO.MemoryMappedFiles.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Runtime.Loader.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Runtime.Loader.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Linq.Expressions.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Linq.Expressions.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.ComponentModel.TypeConverter.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.ComponentModel.TypeConverter.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Drawing.Primitives.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Drawing.Primitives.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Runtime.Serialization.Formatters.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Runtime.Serialization.Formatters.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Resources.Writer.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Resources.Writer.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Xml.XDocument.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Xml.XDocument.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Private.Xml.Linq.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Private.Xml.Linq.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Microsoft.Maui.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Microsoft.Maui.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Microsoft.Maui.Essentials.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Microsoft.Maui.Essentials.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Console.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Console.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Microsoft.Extensions.Logging.Abstractions.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Microsoft.Extensions.Logging.Abstractions.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Microsoft.Extensions.DependencyInjection.Abstractions.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Microsoft.Extensions.DependencyInjection.Abstractions.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Microsoft.Extensions.Configuration.Abstractions.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Microsoft.Extensions.Configuration.Abstractions.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Microsoft.Extensions.Primitives.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Microsoft.Extensions.Primitives.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Microsoft.Extensions.Configuration.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Microsoft.Extensions.Configuration.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Microsoft.Extensions.DependencyInjection.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Microsoft.Extensions.DependencyInjection.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Microsoft.Extensions.Logging.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Microsoft.Extensions.Logging.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Microsoft.Extensions.Options.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Microsoft.Extensions.Options.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.ComponentModel.Annotations.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.ComponentModel.Annotations.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Sentry.Maui.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Sentry.Maui.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Microsoft.Extensions.Configuration.Binder.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Microsoft.Extensions.Configuration.Binder.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Sentry.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Sentry.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Sentry.Bindings.Cocoa.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Sentry.Bindings.Cocoa.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Diagnostics.StackTrace.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Diagnostics.StackTrace.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Text.Json.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Text.Json.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Text.Encodings.Web.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Text.Encodings.Web.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Runtime.Serialization.Primitives.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Runtime.Serialization.Primitives.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.IO.FileSystem.DriveInfo.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.IO.FileSystem.DriveInfo.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Net.Requests.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Net.Requests.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Net.WebHeaderCollection.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Net.WebHeaderCollection.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Net.ServicePoint.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Net.ServicePoint.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Sentry.Extensions.Logging.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Sentry.Extensions.Logging.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Microsoft.Extensions.Http.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Microsoft.Extensions.Http.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Microsoft.Extensions.Diagnostics.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Microsoft.Extensions.Diagnostics.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Microsoft.Extensions.Diagnostics.Abstractions.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Microsoft.Extensions.Diagnostics.Abstractions.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Microsoft.Extensions.Options.ConfigurationExtensions.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Microsoft.Extensions.Options.ConfigurationExtensions.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Microsoft.Extensions.Logging.Configuration.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Microsoft.Extensions.Logging.Configuration.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Serilog.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Serilog.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/The49.Maui.BottomSheet.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/The49.Maui.BottomSheet.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/CommunityToolkit.Mvvm.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/CommunityToolkit.Mvvm.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Runtime.CompilerServices.Unsafe.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Runtime.CompilerServices.Unsafe.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/***IOS.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/***IOS.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Mopups.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Mopups.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/AsyncAwaitBestPractices.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/AsyncAwaitBestPractices.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/netstandard.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/netstandard.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.IO.Pipes.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.IO.Pipes.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Diagnostics.Process.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Diagnostics.Process.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Diagnostics.FileVersionInfo.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Diagnostics.FileVersionInfo.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.ComponentModel.EventBasedAsync.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.ComponentModel.EventBasedAsync.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Data.Common.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Data.Common.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Xml.XmlSerializer.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Xml.XmlSerializer.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Transactions.Local.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Transactions.Local.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Diagnostics.Contracts.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Diagnostics.Contracts.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Diagnostics.TextWriterTraceListener.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Diagnostics.TextWriterTraceListener.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.IO.Compression.ZipFile.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.IO.Compression.ZipFile.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.IO.FileSystem.Watcher.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.IO.FileSystem.Watcher.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.IO.IsolatedStorage.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.IO.IsolatedStorage.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Linq.Queryable.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Linq.Queryable.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Linq.Parallel.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Linq.Parallel.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Net.HttpListener.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Net.HttpListener.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Net.WebSockets.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Net.WebSockets.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Security.Principal.Windows.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Security.Principal.Windows.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Net.WebClient.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Net.WebClient.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Web.HttpUtility.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Web.HttpUtility.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Net.WebProxy.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Net.WebProxy.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Net.Mail.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Net.Mail.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Net.Ping.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Net.Ping.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Net.WebSockets.Client.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Net.WebSockets.Client.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Reflection.DispatchProxy.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Reflection.DispatchProxy.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Runtime.CompilerServices.VisualC.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Runtime.CompilerServices.VisualC.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Runtime.Serialization.Xml.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Runtime.Serialization.Xml.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Private.DataContractSerialization.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Private.DataContractSerialization.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Runtime.Serialization.Json.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Runtime.Serialization.Json.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Threading.Overlapped.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Threading.Overlapped.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Threading.Tasks.Parallel.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Threading.Tasks.Parallel.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Xml.XPath.XDocument.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Xml.XPath.XDocument.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Xml.XPath.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Xml.XPath.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/SkiaSharp.Extended.UI.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/SkiaSharp.Extended.UI.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/SkiaSharp.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/SkiaSharp.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Runtime.InteropServices.RuntimeInformation.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/System.Runtime.InteropServices.RuntimeInformation.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/SkiaSharp.Skottie.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/SkiaSharp.Skottie.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/SkiaSharp.SceneGraph.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/SkiaSharp.SceneGraph.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/SkiaSharp.Views.Maui.Controls.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/SkiaSharp.Views.Maui.Controls.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/SkiaSharp.Views.Maui.Core.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/SkiaSharp.Views.Maui.Core.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/SkiaSharp.Views.iOS.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/SkiaSharp.Views.iOS.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Plugin.Fingerprint.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Plugin.Fingerprint.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/CommunityToolkit.Maui.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/CommunityToolkit.Maui.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/CommunityToolkit.Maui.Core.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/CommunityToolkit.Maui.Core.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Microsoft.Maui.Controls.Compatibility.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Microsoft.Maui.Controls.Compatibility.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Serilog.Sinks.Debug.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Serilog.Sinks.Debug.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Serilog.Sinks.File.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Serilog.Sinks.File.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Serilog.Extensions.Hosting.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Serilog.Extensions.Hosting.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Microsoft.Extensions.Hosting.Abstractions.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Microsoft.Extensions.Hosting.Abstractions.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Microsoft.Extensions.FileProviders.Abstractions.dll Pdb file for assembly /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Microsoft.Extensions.FileProviders.Abstractions.dll was not found or failed to read Loaded assembly: /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Serilog.Extensions.Logging.dll Symbols for module /private/var/containers/Bundle/Application/B0ED7851-70A6-458E-BCBB-9631AE38F5A9/***.app/Serilog.Extensions.Logging.dll loaded Thread started: 6162821120@ Thread started: 6163968000@ Thread started: 6171275264@ Thread started: 6171586560@.NET TP Gate Thread started: 6173732864@ Thread started: 6175879168@ Thread started: 6178598912@ Thread started: 6180745216@.NET Timer Thread started: 6166261760@ Thread started: 6163394560@Using Visual Studio on MACLog 1: (5s)2024-06-18 20:32:39.456 mlaunch[17307:107956] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.TargetSummaryEditor for extension Xcode.Xcode3ProjectSupport.TargetSummaryEditor.IDEAppleTVSupportUI.XPC of plug-in com.apple.dt.IDEAppleTVSupportUI The app 'com.LucasApps.LOTRConverter17' launched with pid 3543 Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/Microsoft.iOS.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Runtime.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Collections.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Runtime.InteropServices.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Threading.Thread.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Threading.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/***.dll Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Private.Uri.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/Microsoft.Maui.Controls.Xaml.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/Microsoft.Maui.Controls.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Collections.Concurrent.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/Microsoft.Maui.Graphics.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Numerics.Vectors.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.ObjectModel.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Xml.ReaderWriter.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Private.Xml.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Memory.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Diagnostics.TraceSource.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Collections.NonGeneric.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Collections.Specialized.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.ComponentModel.Primitives.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.ComponentModel.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Text.RegularExpressions.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Reflection.Emit.ILGeneration.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Reflection.Emit.Lightweight.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Reflection.Primitives.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Net.Primitives.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Diagnostics.Tracing.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Runtime.Intrinsics.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/Microsoft.Win32.Primitives.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Net.Http.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Net.Security.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Security.Cryptography.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Formats.Asn1.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Text.Encoding.Extensions.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Runtime.Numerics.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Security.Claims.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Net.Sockets.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Net.NameResolution.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Diagnostics.DiagnosticSource.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Threading.ThreadPool.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Linq.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Net.Quic.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.IO.Compression.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.IO.Compression.Brotli.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Threading.Channels.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Net.NetworkInformation.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Reflection.Emit.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Reflection.Metadata.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Collections.Immutable.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.IO.MemoryMappedFiles.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Runtime.Loader.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Linq.Expressions.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.ComponentModel.TypeConverter.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Drawing.Primitives.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Runtime.Serialization.Formatters.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Resources.Writer.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Xml.XDocument.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Private.Xml.Linq.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/Microsoft.Maui.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/Microsoft.Maui.Essentials.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Console.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/Microsoft.Extensions.Logging.Abstractions.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/Microsoft.Extensions.DependencyInjection.Abstractions.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/Microsoft.Extensions.Configuration.Abstractions.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/Microsoft.Extensions.Primitives.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/Microsoft.Extensions.Configuration.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/Microsoft.Extensions.DependencyInjection.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/Microsoft.Extensions.Logging.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/Microsoft.Extensions.Options.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.ComponentModel.Annotations.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/Sentry.Maui.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/Microsoft.Extensions.Configuration.Binder.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/Sentry.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/Sentry.Bindings.Cocoa.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Diagnostics.StackTrace.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Text.Json.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Text.Encodings.Web.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Runtime.Serialization.Primitives.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.IO.FileSystem.DriveInfo.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Net.Requests.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Net.WebHeaderCollection.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Net.ServicePoint.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/Sentry.Extensions.Logging.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/Microsoft.Extensions.Http.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/Microsoft.Extensions.Diagnostics.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/Microsoft.Extensions.Diagnostics.Abstractions.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/Microsoft.Extensions.Options.ConfigurationExtensions.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/Microsoft.Extensions.Logging.Configuration.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/Serilog.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/The49.Maui.BottomSheet.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/CommunityToolkit.Mvvm.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Runtime.CompilerServices.Unsafe.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/***IOS.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/Mopups.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/AsyncAwaitBestPractices.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/netstandard.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.IO.Pipes.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Diagnostics.Process.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Diagnostics.FileVersionInfo.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.ComponentModel.EventBasedAsync.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Data.Common.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Xml.XmlSerializer.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Transactions.Local.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Diagnostics.Contracts.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Diagnostics.TextWriterTraceListener.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.IO.Compression.ZipFile.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.IO.FileSystem.Watcher.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.IO.IsolatedStorage.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Linq.Queryable.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Linq.Parallel.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Net.HttpListener.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Net.WebSockets.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Security.Principal.Windows.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Net.WebClient.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Web.HttpUtility.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Net.WebProxy.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Net.Mail.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Net.Ping.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Net.WebSockets.Client.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Reflection.DispatchProxy.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Runtime.CompilerServices.VisualC.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Runtime.Serialization.Xml.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Private.DataContractSerialization.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Runtime.Serialization.Json.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Threading.Overlapped.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Threading.Tasks.Parallel.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Xml.XPath.XDocument.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Xml.XPath.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/SkiaSharp.Extended.UI.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/SkiaSharp.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/System.Runtime.InteropServices.RuntimeInformation.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/SkiaSharp.Skottie.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/SkiaSharp.SceneGraph.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/SkiaSharp.Views.Maui.Controls.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/SkiaSharp.Views.Maui.Core.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/SkiaSharp.Views.iOS.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/Plugin.Fingerprint.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/CommunityToolkit.Maui.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/CommunityToolkit.Maui.Core.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/Microsoft.Maui.Controls.Compatibility.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/Serilog.Sinks.Debug.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/Serilog.Sinks.File.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/Serilog.Extensions.Hosting.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/Microsoft.Extensions.Hosting.Abstractions.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/Microsoft.Extensions.FileProviders.Abstractions.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/AB0E9ABA-B2DC-481A-8014-8016F02463F0/***.app/Serilog.Extensions.Logging.dll [External] Thread started: #2 Resolved pending breakpoint for '***.Program.Main(System.String[])' to /Users/lucasvor/RiderProjects/TokenMAUI/***/Platforms/iOS/Program.cs:11 [0x00000]. Loaded assembly: data-0x155da4000 [External] Loaded assembly: data-0x155dc4000 [External] Loaded assembly: data-0x157600000 [External] Resolved pending breakpoint for 'Xamarin.HotReload.HotReloadAgent.BreakpointSendToIde(System.String)' to /Users/runner/work/1/s/HotReload/Source/Xamarin.HotReload.Agent/HotReloadAgent.cs:423 [0x00000]. Resolved pending breakpoint for 'Xamarin.HotReload.HotReloadAgent.BreakpointCheckpoint()' to /Users/runner/work/1/s/HotReload/Source/Xamarin.HotReload.Agent/HotReloadAgent.cs:418 [0x00000]. 2024-06-18 20:32:44.900 ***[3543:595472] You've implemented -[ application:performFetchWithCompletionHandler:], but you still need to add "fetch" to the list of your supported UIBackgroundModes in your Info.plist.Log 2: (10s)2024-06-18 20:37:41.316 mlaunch[17575:111636] Requested but did not find extension point with identifier Xcode.IDEDebugger.VariablesViewQuickLookProvider for extension Xcode.IDEDebugger.SpriteKitQuickLookProvider of plug-in com.apple.IDESpriteKitParticleEditor 2024-06-18 20:37:41.316 mlaunch[17575:111636] Requested but did not find extension point with identifier Xcode.IDEDebugger.VariablesViewQuickLookProvider for extension Xcode.SpriteKit.GKStateMachineQuickLookProvider of plug-in com.apple.IDESpriteKitParticleEditor 2024-06-18 20:37:41.322 mlaunch[17575:111636] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.TargetSummaryEditor for extension Xcode.Xcode3ProjectSupport.TargetSummaryEditor.WatchOS.IntentsService-AppExtension of plug-in com.apple.dt.IDEWatchSupportUI 2024-06-18 20:37:41.322 mlaunch[17575:111636] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.InfoEditorSlice for extension Xcode.Xcode3ProjectSupport.InfoEditorSlice.WatchOS.BundleInfo of plug-in com.apple.dt.IDEWatchSupportUI 2024-06-18 20:37:41.322 mlaunch[17575:111636] Requested but did not find extension point with identifier Xcode.DebuggerFoundation.ViewDescriber for extension Xcode.DebuggerFoundation.watchOS.ViewDescriber of plug-in com.apple.dt.IDEWatchSupportUI 2024-06-18 20:37:41.322 mlaunch[17575:111636] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.TargetSummaryEditor for extension Xcode.Xcode3ProjectSupport.TargetSummaryEditor.WatchOS.WatchKit2-AppExtension of plug-in com.apple.dt.IDEWatchSupportUI 2024-06-18 20:37:41.322 mlaunch[17575:111636] Requested but did not find extension point with identifier Xcode.IDEiPhoneSupport.TargetEditor for extension Xcode.IDEiPhoneSupport.TargetEditor.WatchOS.Application of plug-in com.apple.dt.IDEWatchSupportUI 2024-06-18 20:37:41.322 mlaunch[17575:111636] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.InfoEditorType for extension Xcode.Xcode3ProjectSupport.InfoEditorType.WatchOS.Bundle of plug-in com.apple.dt.IDEWatchSupportUI 2024-06-18 20:37:41.322 mlaunch[17575:111636] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.TargetSummaryEditor for extension Xcode.Xcode3ProjectSupport.TargetSummaryEditor.WatchOS.Tool of plug-in com.apple.dt.IDEWatchSupportUI 2024-06-18 20:37:41.322 mlaunch[17575:111636] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.TargetSummaryEditor for extension Xcode.Xcode3ProjectSupport.TargetSummaryEditor.WatchOS.Application of plug-in com.apple.dt.IDEWatchSupportUI 2024-06-18 20:37:41.322 mlaunch[17575:111636] Requested but did not find extension point with identifier Xcode.DebuggerFoundation.ViewDescriber for extension Xcode.DebuggerFoundation.watchOSSimulator.ViewDescriber of plug-in com.apple.dt.IDEWatchSupportUI 2024-06-18 20:37:41.323 mlaunch[17575:111636] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.TargetSummaryEditor for extension Xcode.Xcode3ProjectSupport.TargetSummaryEditor.WatchOS.Framework of plug-in com.apple.dt.IDEWatchSupportUI 2024-06-18 20:37:41.323 mlaunch[17575:111636] Requested but did not find extension point with identifier Xcode.Xcode3UI.Xcode3SupportedDestinations for extension IDEWatchSupportUI:IDEWatchSupportUI.plugindata/plug-in[1]/extension[20] of plug-in com.apple.dt.IDEWatchSupportUI 2024-06-18 20:37:41.323 mlaunch[17575:111636] Requested but did not find extension point with identifier Xcode.DebuggerFoundation.DataSourceConnection for extension Xcode.DebuggerFoundation.watchOS.DataSourceConnectionTargetHub of plug-in com.apple.dt.IDEWatchSupportUI 2024-06-18 20:37:41.323 mlaunch[17575:111636] Requested but did not find extension point with identifier Xcode.DebuggerFoundation.DataSourceConnection for extension Xcode.DebuggerFoundation.watchOSSimulator.DataSourceConnectionTargetHub of plug-in com.apple.dt.IDEWatchSupportUI 2024-06-18 20:37:41.323 mlaunch[17575:111636] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.TargetSummaryEditor for extension Xcode.Xcode3ProjectSupport.TargetSummaryEditor.WatchOS.ExtensionKitAppExtension of plug-in com.apple.dt.IDEWatchSupportUI 2024-06-18 20:37:41.323 mlaunch[17575:111636] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.TargetSummaryEditor for extension Xcode.Xcode3ProjectSupport.TargetSummaryEditor.WatchOS.AppExtension of plug-in com.apple.dt.IDEWatchSupportUI 2024-06-18 20:37:41.323 mlaunch[17575:111636] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.TargetSummaryEditor for extension Xcode.Xcode3ProjectSupport.TargetSummaryEditor.WatchOS.WatchApplication of plug-in com.apple.dt.IDEWatchSupportUI 2024-06-18 20:37:41.323 mlaunch[17575:111636] Requested but did not find extension point with identifier Xcode.Xcode3UI.Xcode3SupportedDestinations for extension IDEOSXSupportUI:IDEOSXSupportUI.plugindata/plug-in[1]/extension[5] of plug-in com.apple.dt.IDE.IDEOSXSupportUI 2024-06-18 20:37:41.323 mlaunch[17575:111636] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.InfoEditorType for extension Xcode.Xcode3ProjectSupport.InfoEditorType.Reality.Bundle of plug-in com.apple.dt.IDE.IDESupportUI-xrOS 2024-06-18 20:37:41.323 mlaunch[17575:111636] Requested but did not find extension point with identifier Xcode.Xcode3UI.Xcode3SupportedDestinations for extension IDESupportUI_xrOS:IDESupportUI_xrOS.plugindata/plug-in[1]/extension[13] of plug-in com.apple.dt.IDE.IDESupportUI-xrOS 2024-06-18 20:37:41.323 mlaunch[17575:111636] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.TargetSummaryEditor for extension Xcode.Xcode3ProjectSupport.TargetSummaryEditor.XROS.AppExtension of plug-in com.apple.dt.IDE.IDESupportUI-xrOS 2024-06-18 20:37:41.323 mlaunch[17575:111636] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.TargetSummaryEditor for extension Xcode.Xcode3ProjectSupport.TargetSummaryEditor.XROS.Framework of plug-in com.apple.dt.IDE.IDESupportUI-xrOS 2024-06-18 20:37:41.323 mlaunch[17575:111636] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.TargetSummaryEditor for extension Xcode.Xcode3ProjectSupport.TargetSummaryEditor.XROS.DynamicLibrary of plug-in com.apple.dt.IDE.IDESupportUI-xrOS 2024-06-18 20:37:41.323 mlaunch[17575:111636] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.TargetSummaryEditor for extension Xcode.Xcode3ProjectSupport.TargetSummaryEditor.XROS.ExtensionKitAppExtension of plug-in com.apple.dt.IDE.IDESupportUI-xrOS 2024-06-18 20:37:41.323 mlaunch[17575:111636] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.TargetSummaryEditor for extension Xcode.Xcode3ProjectSupport.TargetSummaryEditor.XROS.XPC of plug-in com.apple.dt.IDE.IDESupportUI-xrOS 2024-06-18 20:37:41.323 mlaunch[17575:111636] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.InfoEditorType for extension Xcode.Xcode3ProjectSupport.InfoEditorType.Reality.Application of plug-in com.apple.dt.IDE.IDESupportUI-xrOS 2024-06-18 20:37:41.323 mlaunch[17575:111636] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.TargetSummaryEditor for extension Xcode.Xcode3ProjectSupport.TargetSummaryEditor.XROS.Bundle of plug-in com.apple.dt.IDE.IDESupportUI-xrOS 2024-06-18 20:37:41.323 mlaunch[17575:111636] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.InfoEditorType for extension Xcode.Xcode3ProjectSupport.InfoEditorType.Reality.Framework of plug-in com.apple.dt.IDE.IDESupportUI-xrOS 2024-06-18 20:37:41.323 mlaunch[17575:111636] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.TargetSummaryEditor for extension Xcode.Xcode3ProjectSupport.TargetSummaryEditor.XROS.Application of plug-in com.apple.dt.IDE.IDESupportUI-xrOS 2024-06-18 20:37:41.323 mlaunch[17575:111636] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.TargetSummaryEditor for extension Xcode.Xcode3ProjectSupport.TargetSummaryEditor.XROS.Tool of plug-in com.apple.dt.IDE.IDESupportUI-xrOS 2024-06-18 20:37:41.323 mlaunch[17575:111636] Requested but did not find extension point with identifier Xcode.Xcode3UI.Xcode3SupportedDestinations for extension IDEAppleTVSupportUI:IDEAppleTVSupportUI.plugindata/plug-in[1]/extension[16] of plug-in com.apple.dt.IDEAppleTVSupportUI 2024-06-18 20:37:41.323 mlaunch[17575:111636] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.TargetSummaryEditor for extension Xcode.Xcode3ProjectSupport.TargetSummaryEditor.IDEAppleTVSupportUI.XPC of plug-in com.apple.dt.IDEAppleTVSupportUI 2024-06-18 20:37:41.323 mlaunch[17575:111636] Requested but did not find extension point with identifier Xcode.DebuggerFoundation.DeviceIconProvider for extension Xcode.DebuggerFoundation.DeviceIconProvider.AppleTV of plug-in com.apple.dt.IDEAppleTVSupportUI 2024-06-18 20:37:41.323 mlaunch[17575:111636] Requested but did not find extension point with identifier Xcode.DebuggerFoundation.ViewDescriber for extension Xcode.DebuggerFoundation.ATVSimulator.ViewDescriber of plug-in com.apple.dt.IDEAppleTVSupportUI 2024-06-18 20:37:41.323 mlaunch[17575:111636] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.TargetSummaryEditor for extension Xcode.Xcode3ProjectSupport.TargetSummaryEditor.IDEAppleTVSupportUI.ExtensionKitAppExtension of plug-in com.apple.dt.IDEAppleTVSupportUI 2024-06-18 20:37:41.323 mlaunch[17575:111636] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.TargetSummaryEditor for extension Xcode.Xcode3ProjectSupport.TargetSummaryEditor.IDEAppleTVSupportUI.AppExtension of plug-in com.apple.dt.IDEAppleTVSupportUI 2024-06-18 20:37:41.323 mlaunch[17575:111636] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.TargetSummaryEditor for extension Xcode.Xcode3ProjectSupport.TargetSummaryEditor.IDEAppleTVSupportUIFramework of plug-in com.apple.dt.IDEAppleTVSupportUI 2024-06-18 20:37:41.323 mlaunch[17575:111636] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.InfoEditorSlice for extension Xcode.Xcode3ProjectSupport.InfoEditorSlice.appletvos.BundleTargetInfo of plug-in com.apple.dt.IDEAppleTVSupportUI 2024-06-18 20:37:41.323 mlaunch[17575:111636] Requested but did not find extension point with identifier Xcode.DebuggerFoundation.DataSourceConnection for extension Xcode.DebuggerFoundation.tvOS.DataSourceConnectionTargetHub of plug-in com.apple.dt.IDEAppleTVSupportUI 2024-06-18 20:37:41.323 mlaunch[17575:111636] Requested but did not find extension point with identifier Xcode.DebuggerFoundation.ViewDescriber for extension Xcode.DebuggerFoundation.ATV.ViewDescriber of plug-in com.apple.dt.IDEAppleTVSupportUI 2024-06-18 20:37:41.323 mlaunch[17575:111636] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.InfoEditorType for extension Xcode.Xcode3ProjectSupport.InfoEditorType.appletvos.Bundle of plug-in com.apple.dt.IDEAppleTVSupportUI 2024-06-18 20:37:41.323 mlaunch[17575:111636] Requested but did not find extension point with identifier Xcode.DebuggerFoundation.DataSourceConnection for extension Xcode.DebuggerFoundation.tvOSSimulator.DataSourceConnectionTargetHub of plug-in com.apple.dt.IDEAppleTVSupportUI 2024-06-18 20:37:41.323 mlaunch[17575:111636] Requested but did not find extension point with identifier Xcode.Xcode3ProjectSupport.TargetSummaryEditor for extension Xcode.Xcode3ProjectSupport.TargetSummaryEditor.IDEAppleTVSupportUI.Application of plug-in com.apple.dt.IDEAppleTVSupportUI The app 'com.LucasApps.LOTRConverter17' launched with pid 3560 Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/Microsoft.iOS.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Runtime.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Collections.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Runtime.InteropServices.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Threading.Thread.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Threading.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/***.dll Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Private.Uri.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/Microsoft.Maui.Controls.Xaml.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/Microsoft.Maui.Controls.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Collections.Concurrent.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/Microsoft.Maui.Graphics.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Numerics.Vectors.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.ObjectModel.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Xml.ReaderWriter.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Private.Xml.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Memory.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Diagnostics.TraceSource.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Collections.NonGeneric.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Collections.Specialized.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.ComponentModel.Primitives.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.ComponentModel.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Text.RegularExpressions.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Reflection.Emit.ILGeneration.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Reflection.Emit.Lightweight.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Reflection.Primitives.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Net.Primitives.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Diagnostics.Tracing.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Runtime.Intrinsics.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/Microsoft.Win32.Primitives.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Net.Http.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Net.Security.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Security.Cryptography.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Formats.Asn1.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Text.Encoding.Extensions.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Runtime.Numerics.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Security.Claims.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Net.Sockets.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Net.NameResolution.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Diagnostics.DiagnosticSource.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Threading.ThreadPool.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Linq.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Net.Quic.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.IO.Compression.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.IO.Compression.Brotli.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Threading.Channels.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Net.NetworkInformation.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Reflection.Emit.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Reflection.Metadata.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Collections.Immutable.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.IO.MemoryMappedFiles.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Runtime.Loader.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Linq.Expressions.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.ComponentModel.TypeConverter.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Drawing.Primitives.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Runtime.Serialization.Formatters.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Resources.Writer.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Xml.XDocument.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Private.Xml.Linq.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/Microsoft.Maui.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/Microsoft.Maui.Essentials.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Console.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/Microsoft.Extensions.Logging.Abstractions.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/Microsoft.Extensions.DependencyInjection.Abstractions.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/Microsoft.Extensions.Configuration.Abstractions.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/Microsoft.Extensions.Primitives.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/Microsoft.Extensions.Configuration.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/Microsoft.Extensions.DependencyInjection.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/Microsoft.Extensions.Logging.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/Microsoft.Extensions.Options.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.ComponentModel.Annotations.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/Sentry.Maui.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/Microsoft.Extensions.Configuration.Binder.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/Sentry.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/Sentry.Bindings.Cocoa.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Diagnostics.StackTrace.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Text.Json.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Text.Encodings.Web.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Runtime.Serialization.Primitives.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.IO.FileSystem.DriveInfo.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Net.Requests.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Net.WebHeaderCollection.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Net.ServicePoint.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/Sentry.Extensions.Logging.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/Microsoft.Extensions.Http.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/Microsoft.Extensions.Diagnostics.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/Microsoft.Extensions.Diagnostics.Abstractions.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/Microsoft.Extensions.Options.ConfigurationExtensions.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/Microsoft.Extensions.Logging.Configuration.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/Serilog.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/The49.Maui.BottomSheet.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/CommunityToolkit.Mvvm.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Runtime.CompilerServices.Unsafe.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/***IOS.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/Mopups.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/AsyncAwaitBestPractices.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/netstandard.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.IO.Pipes.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Diagnostics.Process.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Diagnostics.FileVersionInfo.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.ComponentModel.EventBasedAsync.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Data.Common.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Xml.XmlSerializer.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Transactions.Local.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Diagnostics.Contracts.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Diagnostics.TextWriterTraceListener.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.IO.Compression.ZipFile.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.IO.FileSystem.Watcher.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.IO.IsolatedStorage.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Linq.Queryable.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Linq.Parallel.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Net.HttpListener.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Net.WebSockets.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Security.Principal.Windows.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Net.WebClient.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Web.HttpUtility.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Net.WebProxy.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Net.Mail.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Net.Ping.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Net.WebSockets.Client.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Reflection.DispatchProxy.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Runtime.CompilerServices.VisualC.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Runtime.Serialization.Xml.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Private.DataContractSerialization.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Runtime.Serialization.Json.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Threading.Overlapped.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Threading.Tasks.Parallel.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Xml.XPath.XDocument.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Xml.XPath.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/SkiaSharp.Extended.UI.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/SkiaSharp.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/System.Runtime.InteropServices.RuntimeInformation.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/SkiaSharp.Skottie.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/SkiaSharp.SceneGraph.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/SkiaSharp.Views.Maui.Controls.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/SkiaSharp.Views.Maui.Core.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/SkiaSharp.Views.iOS.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/Plugin.Fingerprint.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/CommunityToolkit.Maui.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/CommunityToolkit.Maui.Core.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/Microsoft.Maui.Controls.Compatibility.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/Serilog.Sinks.Debug.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/Serilog.Sinks.File.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/Serilog.Extensions.Hosting.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/Microsoft.Extensions.Hosting.Abstractions.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/Microsoft.Extensions.FileProviders.Abstractions.dll [External] Loaded assembly: /private/var/containers/Bundle/Application/0BD8A408-2A41-4CB0-8F07-8E8AC0CBB8D1/***.app/Serilog.Extensions.Logging.dll [External] Thread started: #2 Resolved pending breakpoint for '***.Program.Main(System.String[])' to /Users/lucasvor/RiderProjects/TokenMAUI/***/Platforms/iOS/Program.cs:11 [0x00000]. Loaded assembly: data-0x107ff0000 [External] Loaded assembly: data-0x109018000 [External] Loaded assembly: data-0x109038000 [External] Resolved pending breakpoint for 'Xamarin.HotReload.HotReloadAgent.BreakpointSendToIde(System.String)' to /Users/runner/work/1/s/HotReload/Source/Xamarin.HotReload.Agent/HotReloadAgent.cs:423 [0x00000]. Resolved pending breakpoint for 'Xamarin.HotReload.HotReloadAgent.BreakpointCheckpoint()' to /Users/runner/work/1/s/HotReload/Source/Xamarin.HotReload.Agent/HotReloadAgent.cs:418 [0x00000]. 2024-06-18 20:37:46.741 ***[3560:599482] You've implemented -[ application:performFetchWithCompletionHandler:], but you still need to add "fetch" to the list of your supported UIBackgroundModes in your Info.plist.ObservationsIt seems that there are some commands executed on Windows that significantly slow down the process. |
@Lucasvor Are you paired over wired or wireless connection? If wireless, I wonder if latency over the wireless (or even wired) connection contributes to the latency leading to excessive load times? Likely also related to the number of external packages included. I have found that you must clean the solution when changing the value of |
@rcarde I am using the iPhone connected via cable to the Mac, and the Mac is using Wi-Fi for the SSH connection. The UseInterpreter part helped in some cases but not in all of them. =\ |
I believe I've found a solution! My team and I have been dealing with this issue for over 8 months and have tried nearly every suggested fix. After seeing @rcarde's post, I switched from Wi-Fi to an ethernet connection, and it instantly resolved the problem. If you're encountering the same issue, I highly recommend connecting both your PC and Mac via ethernet and seeing if that works for you. I did not have to use any hacks in the csproj either such as UseInterpreter. Hot Reload is even working! This probably won't help everyone, but I'm hoping it will help some people facing this issue. Update: I should have checked my older device first, because I've only been able to get this to work on a new 11" iPad Pro (M4). |
I have found that delays cause issues. Be it slow network, lots of debug messages or libs to load, old phone… iOS must start is 20s or the session is killed. Debugging on a physical device can be a nightmare and the simulator is more forgiving. Sadly, the simulator doesn’t always replicate a real device. I have no further words… |
@RobTF the To clear it, you can reboot the device or:
|
An update for folks that are facing debugging issues while paired to a Mac: We made some improvements on how the debugger loads the assemblies, and those changes were included in Visual Studio 17.12 Preview 2 (which just shipped - https://visualstudio.microsoft.com/vs/preview/). These won’t probably fix the problem for everyone, but it’d be great if you could give it a try and let us know if it improved anything for you at all. If you disabled the interpreter, please also try enabling it back. |
Can confirm, we have a large app with lots of packages and Watchdog killed it before it could startup. After updating VS to 17.12 Preview 2 I'm able to debug (wired) again! The app starts up in like 5 seconds now. Wow! Now Apple just needs to fix the XCode bug preventing us from wireless debugging :D Thanks to all who helped fix this!!! |
I've tried VS 17.12 preview3 from Windows, VS Code from Mac and Rider for mac, Without debugging (ie: tap the app's icon on the iPhone), the app starts almost instantly. That app is a "big" app, not a random demo app. It looks like loading the symbols for libraries is one root cause. Any way to fix this ? Load only on demand ? Note that there are breakpoints, and "resolving breakpoints" takes time too. |
@softlion , I reported Hot Restart problems here: And was notified last week that is was fixed in preview 3. I haven't yet tried it, but will do so this week. Maybe give preview 3 a go? |
I already tried with Preview 3, Full log: |
@softlion What iPhone model are you using? My app is quite large - I couldn't debug it on an iPhone 6, but it works fine on an iPhone X and iPad 13. Also, I disabled assembly loading messages in Visual Studio 2022 during debugging by adjusting a few settings in the Options. Hope it helps |
I'm using an iPhone 6, so that's an interesting observation. |
Disabling the assembly loading messages did not help me with iPhone 6. But you can try: Good luck |
iPhone 16 Pro Max. |
Finally got back to testing on VS 17.12. It seems to have fixed it for me. Thank you! |
Description
When debugging iOS the app stalls for a long time on the splash screen. Android is significantly faster. I'm using defaults from a clean install on Ventura. VS Mac 17.4 stable, and .NET 7 GA.
Simulator.Screen.Recording.-.iPhone.14.Pro.-.2022-11-15.at.07.57.35.mp4
Steps to Reproduce
Run the CarouselViewDemos project from our samples. Update to 7.0.
Link to public reproduction project repository
https://github.com/dotnet/maui-samples/blob/main/6.0/UserInterface/Views/CarouselViewDemos/
Version with bug
7.0 (current)
Last version that worked well
Unknown/Other
Affected platforms
iOS
Affected platform versions
16
Did you find any workaround?
nope
Relevant log output
No response
The text was updated successfully, but these errors were encountered: