2 writes to IsDoNotSign
Microsoft.DotNet.SignCheckLibrary (2)
Verification\FileVerifier.cs (1)
169svr.IsDoNotSign = Exclusions.IsDoNotSign(path, parent, virtualPath, containerPath);
Verification\SignatureVerificationManager.cs (1)
127result.IsDoNotSign = Exclusions.IsDoNotSign(file, parent: null, virtualPath: null, containerPath: null);
10 references to IsDoNotSign
Microsoft.DotNet.SignCheck (6)
SignCheck.cs (6)
316else if (!(result.IsExcluded || result.IsSkipped) && (!result.IsSigned && !result.IsDoNotSign)) 321if (result.IsExcluded || (!result.IsSigned && result.IsDoNotSign)) 341((result.IsSigned) && (result.IsDoNotSign)) || 344((!result.IsSigned && !result.IsDoNotSign) && (!result.IsSkipped) && (!result.IsExcluded) && ((FileStatus & FileStatus.UnsignedFiles) != 0))) 350if (((!result.IsSigned) && (!(result.IsSkipped || result.IsExcluded || result.IsDoNotSign))) || (result.IsSigned && result.IsDoNotSign))
Microsoft.DotNet.SignCheckLibrary (4)
Verification\FileVerifier.cs (2)
171if ((svr.IsDoNotSign) && (svr.IsSigned)) 177if ((!svr.IsDoNotSign) && (!svr.IsSigned))
Verification\SignatureVerificationManager.cs (2)
129if ((result.IsDoNotSign) && (result.IsSigned)) 135if ((!result.IsDoNotSign) && (!result.IsSigned))