You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In order to run and debug iOS/Android apps with .NET, installing the iOS or Android workload are not enough.
dotnet workload install ios and dotnet workload install androidwill not install the debugging tools.
And likewise for Visual Studio: installing the mobile package will not include the debugging extensions for mobile .NET apps.
The actual debugging tools are all hidden inside the MAUI workload and package. Even though MonoGame doesn't use MAUI, MAUI is required to just run and debug apps.
Hence, mobile development requires dotnet workload install maui and the Visual Studio package for MAUI development.
The getting started documentation of MonoGame indicate to use dotnet workload install ios and/or dotnet workload install android only. We should add the need to have both dotnet workload install maui and the Visual Studio MAUI package (or mobile develop workload, which includes MAUI).
The text was updated successfully, but these errors were encountered:
In order to run and debug iOS/Android apps with .NET, installing the iOS or Android workload are not enough.
dotnet workload install ios
anddotnet workload install android
will not install the debugging tools.And likewise for Visual Studio: installing the mobile package will not include the debugging extensions for mobile .NET apps.
The actual debugging tools are all hidden inside the MAUI workload and package. Even though MonoGame doesn't use MAUI, MAUI is required to just run and debug apps.
Hence, mobile development requires
dotnet workload install maui
and the Visual Studio package for MAUI development.The getting started documentation of MonoGame indicate to use
dotnet workload install ios
and/ordotnet workload install android
only. We should add the need to have bothdotnet workload install maui
and the Visual Studio MAUI package (or mobile develop workload, which includes MAUI).The text was updated successfully, but these errors were encountered: