Hello,
Do you want to know all of installed maui versions or maui version of specific project?
To check the version of a specific .NET MAUI project, you can right-click on the project in the Solution Explorer and select Properties and find <TargetFramework>
tag. For example, you find <TargetFramework>net6.0-android</TargetFramework>
, net6.0-android
indicates that the version of .NET MAUI used is 6.0, that's same for ios、macos platform.
You can execute following command to get all of installed MAUI version by using the command line tool:
dotnet workload list
Best Regards,
Leon Lu
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.