Skip to content

Commit

Permalink
Update UtilsManaged.cake
Browse files Browse the repository at this point in the history
  • Loading branch information
mattleibow authored Jul 18, 2024
1 parent 9383008 commit ca94aa4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/cake/UtilsManaged.cake
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ IEnumerable<(DirectoryPath path, string platform)> GetPlatformDirectories(Direct
// try find any cross-platform frameworks
foreach (var dir in platformDirs) {
var d = dir.GetDirectoryName().ToLower();
if (d.StartsWith("netstandard") || d.StartsWith("portable") || d.Equals("net6.0") || d.Equals("net8.0") || d.Equals("net8.0")) {
if (d.StartsWith("netstandard") || d.StartsWith("portable") || d.Equals("net6.0") || d.Equals("net7.0") || d.Equals("net8.0") || d.Equals("net9.0")) {
// we just want this single platform
yield return (dir, null);
yield break;
Expand Down

0 comments on commit ca94aa4

Please sign in to comment.