Bump Microsoft.Tools.Mlaunch from 1.1.92 to 1.1.113 - #1591
Merged
Conversation
This fixes the iOS 18.5 simulator launch failure (dotnet/maui#35261) where mlaunch's watchdog-disable flow shuts down the simulator but doesn't update the in-memory device state, causing it to skip re-booting and fail with simctl exit code 149 (Shutdown state). The fix (State = "Shutdown" after ShutdownAsync) was added in mlaunch commit 4ba65e5 and is included in version 1.1.110+. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
matouskozak
approved these changes
Apr 30, 2026
kotlarmilos
self-requested a review
April 30, 2026 17:10
kotlarmilos
approved these changes
Apr 30, 2026
dalexsoto
approved these changes
Apr 30, 2026
PureWeen
pushed a commit
to dotnet/maui
that referenced
this pull request
May 7, 2026
Includes Rolf's fix for mlaunch failing to launch apps on simulator with Xcode 26.4 (dotnet/xharness#1591). Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
PureWeen
pushed a commit
to dotnet/maui
that referenced
this pull request
May 7, 2026
Includes fix for mlaunch failing to launch apps on simulator with Xcode 26.4 (dotnet/xharness#1591). Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes the iOS 18.5 simulator launch failure reported in dotnet/maui#35261.
Problem
When mlaunch's watchdog-disable flow shuts down the iOS 18.5 simulator, it doesn't update the in-memory device state. Subsequent code thinks the device is still booted, skips re-booting, and
simctl launchfails with exit code 149 (Unable to lookup in current state: Shutdown).Fix
The fix (
State = "Shutdown"afterShutdownAsync) was added in mlaunch commit 4ba65e5 and is included in version 1.1.110+. This PR bumps to 1.1.113 (latest).Verification
Fixes dotnet/macios#25290
🤖 Pull request created by Copilot