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