2 writes to IsDoNotSign
Microsoft.DotNet.SignCheckLibrary (2)
Verification\FileVerifier.cs (1)
169svr.IsDoNotSign = Exclusions.IsDoNotSign(path, parent, virtualPath, containerPath);
Verification\SignatureVerificationManager.cs (1)
137result.IsDoNotSign = Exclusions.IsDoNotSign(file, parent: null, virtualPath: null, containerPath: null);
10 references to IsDoNotSign
Microsoft.DotNet.SignCheckLibrary (4)
Verification\FileVerifier.cs (2)
171if ((svr.IsDoNotSign) && (svr.IsSigned)) 177if ((!svr.IsDoNotSign) && (!svr.IsSigned))
Verification\SignatureVerificationManager.cs (2)
139if ((result.IsDoNotSign) && (result.IsSigned)) 145if ((!result.IsDoNotSign) && (!result.IsSigned))
Microsoft.DotNet.SignCheckTask (6)
src\SignCheck.cs (6)
318else if (!(result.IsExcluded || result.IsSkipped) && (!result.IsSigned && !result.IsDoNotSign)) 324if (result.IsExcluded || (!result.IsSigned && result.IsDoNotSign)) 347((result.IsSigned) && (result.IsDoNotSign)) || 350((!result.IsSigned && !result.IsDoNotSign) && (!result.IsSkipped) && (!result.IsExcluded) && ((FileStatus & FileStatus.UnsignedFiles) != 0))) 356if (((!result.IsSigned) && (!(result.IsSkipped || result.IsExcluded || result.IsDoNotSign))) || (result.IsSigned && result.IsDoNotSign))