6 instantiations of Exclusion
Microsoft.DotNet.SignCheck (5)
SignCheck.cs (5)
174
Exclusions.Add(new
Exclusion
("*netfxca*;*.msi;Wix custom action (NGEN"));
175
Exclusions.Add(new
Exclusion
("*wixdepca*;*.msi;WiX custom action"));
176
Exclusions.Add(new
Exclusion
("*wixuiwixca*;*.msi;WiX custom action"));
177
Exclusions.Add(new
Exclusion
("*wixca*;*.msi;Wix custom action"));
178
Exclusions.Add(new
Exclusion
("*wixstdba.dll*;*.exe;WiX standard bundle application"));
Microsoft.DotNet.SignCheckLibrary (1)
Verification\Exclusions.cs (1)
46
Add(new
Exclusion
(line));
15 references to Exclusion
Microsoft.DotNet.SignCheckLibrary (15)
Verification\Exclusion.cs (1)
23
/// Creates a new <see cref="
Exclusion
"/>.
Verification\Exclusions.cs (13)
15
private List<
Exclusion
> _exclusions = new List<
Exclusion
>();
31
/// Creates a collection of <see cref="
Exclusion
"/>s from a text file.
54
public void Add(
Exclusion
exclusion)
67
public bool Contains(
Exclusion
exclusion)
72
public bool IsExcluded(string path, string parent, string virtualPath, string containerPath, IEnumerable<
Exclusion
> exclusions)
74
foreach (
Exclusion
e in exclusions)
122
IEnumerable<
Exclusion
> doNotSignExclusions = _exclusions.Where(e => e.Comment.Contains("DO-NOT-SIGN")).ToArray();
128
/// Returns true if any <see cref="
Exclusion
.FilePatterns"/> matches the value of <paramref name="path"/>.
130
/// <param name="path">The value to match against any <see cref="
Exclusion
.FilePatterns"/>.</param>
138
/// Returns true if any <see cref="
Exclusion
.ParentFiles"/> matches the value of <paramref name="parent"/>.
140
/// <param name="parent">The value to match against any <see cref="
Exclusion
.ParentFiles"/>.</param>
170
public bool Remove(
Exclusion
exclusion)
Verification\SignatureVerificationResult.cs (1)
37
/// A string containing the formatted <see cref="
Exclusion
"/> entry that would allow the file to be excluded from verification.