Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
HendrikMennen committed Oct 20, 2024
1 parent 28459fe commit b493a04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/OneWare.ProjectSystem/Models/UniversalProjectRoot.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public override bool IsPathIncluded(string relativePath)

if (includes == null && excludes == null) return true;

return ProjectHelper.MatchWildCards(relativePath, includes ?? new[] { "*.*" }, excludes);
return ProjectHelper.MatchWildCards(relativePath, includes ?? ["*.*"], excludes);
}

public override void IncludePath(string path)
Expand Down

0 comments on commit b493a04

Please sign in to comment.