Skip to content

Commit

Permalink
Merge pull request #298 from unoplatform/dev/jela/adjust-missing-work…
Browse files Browse the repository at this point in the history
…load

fix: Adjust for maui workloads
  • Loading branch information
jeromelaban authored Oct 9, 2024
2 parents 4ac12bc + d884a08 commit dc91f8a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions UnoCheck/Checkups/DotNetWorkloadsCheckup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ private bool FilterPlatform(Manifest.DotNetWorkload w)
switch (w.Id)
{
case "android" when TargetPlatforms.HasFlag(TargetPlatform.Android):
case "maui-android" when TargetPlatforms.HasFlag(TargetPlatform.Android):
case "maui" when (TargetPlatforms.HasFlag(TargetPlatform.Android)
|| TargetPlatforms.HasFlag(TargetPlatform.iOS)
|| TargetPlatforms.HasFlag(TargetPlatform.macOS)):
case "ios" when TargetPlatforms.HasFlag(TargetPlatform.iOS):
case "macos" when TargetPlatforms.HasFlag(TargetPlatform.macOS):
case "maccatalyst" when TargetPlatforms.HasFlag(TargetPlatform.macOS):
Expand Down

0 comments on commit dc91f8a

Please sign in to comment.