Skip to content

Commit

Permalink
Fix UWP detection on modern .NET
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergio0694 committed Jan 18, 2025
1 parent 74109d6 commit f68b369
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public static bool IsUwpTarget(Compilation compilation, AnalyzerConfigOptions an
{
if (bool.TryParse(propertyValue, out bool useUwpTools))
{
return true;
return useUwpTools;
}
}

Expand Down

0 comments on commit f68b369

Please sign in to comment.