Skip to content
Rolf Bjarne Kvinge edited this page Nov 11, 2025 · 11 revisions

.NET 11

Warning

.NET 11 is a prerelease version.

.NET 10

.NET 9

.NET 8

.NET 7

.NET 6

How to run on Device/Simulator from the command line

The general process is documented here:

https://docs.microsoft.com/en-us/dotnet/maui/ios/cli

but does not include running on an attached device.

To do that, include -p:RuntimeIdentifier=ios-arm64, along with the other parameters.

dotnet build -t:run -f:net10.0-ios -p:RuntimeIdentifier=ios-arm64 -p:_DeviceName=MY_SPECIFIC_UUID

with MY_SPECIFIC_UUID found as described here but for your device.

Note that this does not work from Windows, only from a Mac.

Clone this wiki locally