1 write to AllowUntrustedRoot
NuGet.Packaging (1)
Signing\TrustedSigners\TrustedSignersProvider.cs (1)
107existingEntry.Certificate.AllowUntrustedRoot = false;
6 references to AllowUntrustedRoot
NuGet.Commands (1)
TrustedSignersCommand\TrustedSignersCommandRunner.cs (1)
243var summaryAllowUntrustedRoot = (cert.AllowUntrustedRoot) ? Strings.TrustedSignerLogCertificateSummaryAllowUntrustedRoot : Strings.TrustedSignerLogCertificateSummaryUnallowUntrustedRoot;
NuGet.Configuration (2)
Settings\Items\CertificateItem.cs (2)
91UpdateAttribute(ConfigurationConstants.AllowUntrustedRoot, AllowUntrustedRoot.ToString(CultureInfo.CurrentCulture).ToLower(CultureInfo.InvariantCulture)); 96var newItem = new CertificateItem(Fingerprint, HashAlgorithm, AllowUntrustedRoot);
NuGet.Packaging (3)
Signing\TrustedSigners\TrustedSignersProvider.cs (3)
101if (existingEntry.Certificate.AllowUntrustedRoot != certificate.AllowUntrustedRoot) 172return new TrustedSignerAllowListEntry(Target, Placement, Certificate.Fingerprint, Certificate.HashAlgorithm, Certificate.AllowUntrustedRoot, Owners?.ToList());