DEV Community

Discussion on: Installing .NET MAUI on macOS

Collapse
 
wcoder profile image
Yauheni Pakala • Edited

Thanks for the great article!

Might be helpful links for someone:

Sample native projects on GitHub


Also, you can see the list of available simulators via terminal command xcrun simctl:

xcrun simctl list
Enter fullscreen mode Exit fullscreen mode

Run on iPhone 11 for example:

dotnet build -t:Run -f net6.0-ios -p:_DeviceName=:v2:udid=$(xcrun simctl getenv "iPhone 11" SIMULATOR_UDID)
Enter fullscreen mode Exit fullscreen mode