8 references to Verification
NuGet.CommandLine.XPlat (4)
Commands\Signing\VerifyCommand.cs (4)
62new List<Verification>() { Verification.All } : 63new List<Verification>() { Verification.Signatures };
NuGet.Commands (4)
VerifyCommand\VerifyArgs.cs (1)
27public IList<Verification> Verifications { get; set; }
VerifyCommand\VerifyCommandRunner.cs (3)
40if (ShouldExecuteVerification(verifyArgs, Verification.Signatures)) 165private bool ShouldExecuteVerification(VerifyArgs args, Verification v) 167return args.Verifications.Any(verification => verification == Verification.All || verification == v);