4 instantiations of AuthorItem
NuGet.Commands (2)
TrustedSignersCommand\TrustedSignerActionsProvider.cs (2)
150
_trustedSignersProvider.AddOrUpdateTrustedSigner(new
AuthorItem
(name, certificateItem));
199
signerToAdd = new
AuthorItem
(name, certificateToAdd);
NuGet.Configuration (2)
Settings\Items\AuthorItem.cs (1)
30
var newItem = new
AuthorItem
(Name, Certificates.Select(c => (CertificateItem)c.Clone()).ToArray());
Settings\SettingFactory.cs (1)
74
return new
AuthorItem
(element, origin);
2 references to AuthorItem
NuGet.Configuration (2)
Settings\Items\AuthorItem.cs (2)
30
var
newItem = new AuthorItem(Name, Certificates.Select(c => (CertificateItem)c.Clone()).ToArray());
64
if (other is
AuthorItem
author)