Mierk
Rider suddenly can't run source code, SDK issue
I'm not sure. Could be that after an update, Rider 'guessed' the correct dotnet path, found both
dotnet
and .dotnet
and prioritized to .
version.
Maybe it's possible to delete one of the two installation paths, to avoid mixups in the future?6 replies
Workload ID maui is not recognized.
.NET installation
1. SDK download location
First, you must download the .NET sdk. You can find the latest version: https://dotnet.microsoft.com/en-us/download/dotnet
2. Install workloads (Maui)
After you’ve installed the .NET sdk and want to develop for Maui, you must install the correct Maui workload using the following command:
sudo dotnet workload install maui
Your Maui workload version doesn’t have to match your project’s Maui Nuget version. For example: Maui workload 8.0.7 is perfectly compatible with Maui Nuget version 8.0.10, and it’s recommended to keep your Maui Nuget version up-to-date.
Extra commands that shouldn't be necessary, but might fix some issues:
sudo dotnet workload install maui-ios
sudo dotnet workload install maui-android
sudo dotnet workload install android
7 replies
Workload ID maui is not recognized.
We had the same issue at work, it’s somewhere in the confluence docs over there. I can check it in 9-10 hours…
I remember something about having to download it manually from the website. Then using a dotnet Maui command pointing to that installer file.
But I might have mixed it up with something else though 😅
7 replies