6 instantiations of Exclusion
Microsoft.DotNet.SignCheck (5)
SignCheck.cs (5)
174Exclusions.Add(new Exclusion("*netfxca*;*.msi;Wix custom action (NGEN")); 175Exclusions.Add(new Exclusion("*wixdepca*;*.msi;WiX custom action")); 176Exclusions.Add(new Exclusion("*wixuiwixca*;*.msi;WiX custom action")); 177Exclusions.Add(new Exclusion("*wixca*;*.msi;Wix custom action")); 178Exclusions.Add(new Exclusion("*wixstdba.dll*;*.exe;WiX standard bundle application"));
Microsoft.DotNet.SignCheckLibrary (1)
Verification\Exclusions.cs (1)
46Add(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)
15private List<Exclusion> _exclusions = new List<Exclusion>(); 31/// Creates a collection of <see cref="Exclusion"/>s from a text file. 54public void Add(Exclusion exclusion) 67public bool Contains(Exclusion exclusion) 72public bool IsExcluded(string path, string parent, string virtualPath, string containerPath, IEnumerable<Exclusion> exclusions) 74foreach (Exclusion e in exclusions) 122IEnumerable<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> 170public 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.