8 references to FilePatterns
Microsoft.DotNet.SignCheckLibrary (8)
Verification\Exclusion.cs (3)
87
return
FilePatterns
.Length != 0 && !
FilePatterns
.All(fp => String.IsNullOrEmpty(fp));
104
return String.Format("FilePattern: {0} | Parent: {1} | Comment: {2}",
FilePatterns
, ParentFiles, Comment);
Verification\Exclusions.cs (5)
142
/// Returns true if any <see cref="Exclusion.
FilePatterns
"/> matches the value of
145
/// <param name="path">The value to match against <see cref="Exclusion.
FilePatterns
"/>.</param>
146
/// <param name="containerPath">The value to match against <see cref="Exclusion.
FilePatterns
"/>.</param>
147
/// <param name="virtualPath">The value to match against <see cref="Exclusion.
FilePatterns
"/>.</param>
155
isExcluded = values.Any(v => IsMatch(exclusion.
FilePatterns
, v));